diff options
Diffstat (limited to 'Source/cmInstallTargetsCommand.h')
-rw-r--r-- | Source/cmInstallTargetsCommand.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Source/cmInstallTargetsCommand.h b/Source/cmInstallTargetsCommand.h index 05160eb..b0d04b0 100644 --- a/Source/cmInstallTargetsCommand.h +++ b/Source/cmInstallTargetsCommand.h @@ -27,25 +27,21 @@ public: /** * This is a virtual constructor for the command. */ - virtual cmCommand* Clone() - { - return new cmInstallTargetsCommand; - } + virtual cmCommand* Clone() { return new cmInstallTargetsCommand; } /** * 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 "install_targets";} + virtual std::string GetName() const { return "install_targets"; } cmTypeMacro(cmInstallTargetsCommand, cmCommand); }; - #endif |