diff options
author | Gabor Bencze <b.gabor98@gmail.com> | 2019-08-09 13:24:14 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-08-20 18:42:20 (GMT) |
commit | 6ab28b9413ade87cf9fbaad439f8cb4c27ecc97f (patch) | |
tree | 486cc9d69a29247e3b9ac58f37cdd1c9cb485c7b /Source/cmCommands.cxx | |
parent | 36f32d360410562efe5a986d1966c7fc80c596f8 (diff) | |
download | CMake-6ab28b9413ade87cf9fbaad439f8cb4c27ecc97f.zip CMake-6ab28b9413ade87cf9fbaad439f8cb4c27ecc97f.tar.gz CMake-6ab28b9413ade87cf9fbaad439f8cb4c27ecc97f.tar.bz2 |
cmCommand refactor: cmStringCommand
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index c0263d6..dd9b9a1 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -158,7 +158,7 @@ void GetScriptingCommands(cmState* state) cmSetDirectoryPropertiesCommand); state->AddBuiltinCommand("set_property", cmSetPropertyCommand); state->AddBuiltinCommand("site_name", cmSiteNameCommand); - state->AddBuiltinCommand("string", cm::make_unique<cmStringCommand>()); + state->AddBuiltinCommand("string", cmStringCommand); state->AddBuiltinCommand("unset", cmUnsetCommand); state->AddBuiltinCommand("while", cmWhileCommand); |