diff options
Diffstat (limited to 'Source/cmMarkAsAdvancedCommand.h')
-rw-r--r-- | Source/cmMarkAsAdvancedCommand.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/Source/cmMarkAsAdvancedCommand.h b/Source/cmMarkAsAdvancedCommand.h index 38064a3..add43c9 100644 --- a/Source/cmMarkAsAdvancedCommand.h +++ b/Source/cmMarkAsAdvancedCommand.h @@ -25,22 +25,19 @@ public: /** * This is a virtual constructor for the command. */ - virtual cmCommand* Clone() - { - return new cmMarkAsAdvancedCommand; - } + virtual cmCommand* Clone() { return new cmMarkAsAdvancedCommand; } /** * 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); /** * The name of the command as specified in CMakeList.txt. */ - virtual std::string GetName() const {return "mark_as_advanced";} + virtual std::string GetName() const { return "mark_as_advanced"; } /** * This determines if the command is invoked when in script mode. @@ -53,6 +50,4 @@ public: cmTypeMacro(cmMarkAsAdvancedCommand, cmCommand); }; - - #endif |