diff options
author | Gabor Bencze <b.gabor98@gmail.com> | 2019-07-25 14:52:50 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-08-20 18:42:19 (GMT) |
commit | 0005e17d504fd50ebaec3860f4f213765e815b13 (patch) | |
tree | 8e29587d7fddab24967f203d8fb00d78c4b4ccfb /Source/cmCommands.cxx | |
parent | 01949a02df765cc4ad273b6163622f55d4f569ca (diff) | |
download | CMake-0005e17d504fd50ebaec3860f4f213765e815b13.zip CMake-0005e17d504fd50ebaec3860f4f213765e815b13.tar.gz CMake-0005e17d504fd50ebaec3860f4f213765e815b13.tar.bz2 |
cmCommand refactor: cmContinueCommand
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 3e7fa72..429a599 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -121,7 +121,7 @@ void GetScriptingCommands(cmState* state) state->AddBuiltinCommand("cmake_policy", cm::make_unique<cmCMakePolicyCommand>()); state->AddBuiltinCommand("configure_file", cmConfigureFileCommand); - state->AddBuiltinCommand("continue", cm::make_unique<cmContinueCommand>()); + state->AddBuiltinCommand("continue", cmContinueCommand); state->AddBuiltinCommand("exec_program", cm::make_unique<cmExecProgramCommand>()); state->AddBuiltinCommand("execute_process", |