diff options
Diffstat (limited to 'Source/cmParseArgumentsCommand.h')
-rw-r--r-- | Source/cmParseArgumentsCommand.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/Source/cmParseArgumentsCommand.h b/Source/cmParseArgumentsCommand.h index 7fbf642..46d9daa 100644 --- a/Source/cmParseArgumentsCommand.h +++ b/Source/cmParseArgumentsCommand.h @@ -24,17 +24,14 @@ public: /** * This is a virtual constructor for the command. */ - virtual cmCommand* Clone() - { - return new cmParseArgumentsCommand; - } + virtual cmCommand* Clone() { return new cmParseArgumentsCommand; } /** * 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. @@ -44,11 +41,9 @@ public: /** * The name of the command as specified in CMakeList.txt. */ - virtual std::string GetName() const { return "cmake_parse_arguments";} + virtual std::string GetName() const { return "cmake_parse_arguments"; } cmTypeMacro(cmParseArgumentsCommand, cmCommand); - }; - #endif |