diff options
Diffstat (limited to 'Source/cmContinueCommand.h')
-rw-r--r-- | Source/cmContinueCommand.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Source/cmContinueCommand.h b/Source/cmContinueCommand.h index 093b14f..63ae59d 100644 --- a/Source/cmContinueCommand.h +++ b/Source/cmContinueCommand.h @@ -25,17 +25,14 @@ public: /** * This is a virtual constructor for the command. */ - virtual cmCommand* Clone() - { - return new cmContinueCommand; - } + virtual cmCommand* Clone() { return new cmContinueCommand; } /** * This is called when the command is first encountered in * the CMakeLists.txt file. */ virtual bool InitialPass(std::vector<std::string> const& args, - cmExecutionStatus &status); + cmExecutionStatus& status); /** * This determines if the command is invoked when in script mode. @@ -50,6 +47,4 @@ public: cmTypeMacro(cmContinueCommand, cmCommand); }; - - #endif |