diff options
Diffstat (limited to 'Source/cmExecuteProcessCommand.h')
-rw-r--r-- | Source/cmExecuteProcessCommand.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Source/cmExecuteProcessCommand.h b/Source/cmExecuteProcessCommand.h index 6906a08..a89e705 100644 --- a/Source/cmExecuteProcessCommand.h +++ b/Source/cmExecuteProcessCommand.h @@ -26,23 +26,19 @@ public: /** * This is a virtual constructor for the command. */ - virtual cmCommand* Clone() - { - return new cmExecuteProcessCommand; - } + virtual cmCommand* Clone() { return new cmExecuteProcessCommand; } /** * 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 "execute_process";} + virtual std::string GetName() const { return "execute_process"; } /** * This determines if the command is invoked when in script mode. |