diff options
Diffstat (limited to 'Source/cmFindProgramCommand.h')
-rw-r--r-- | Source/cmFindProgramCommand.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/Source/cmFindProgramCommand.h b/Source/cmFindProgramCommand.h index f88186b92a..3f2ac0ed44 100644 --- a/Source/cmFindProgramCommand.h +++ b/Source/cmFindProgramCommand.h @@ -29,17 +29,14 @@ public: /** * This is a virtual constructor for the command. */ - virtual cmCommand* Clone() - { - return new cmFindProgramCommand; - } + virtual cmCommand* Clone() { return new cmFindProgramCommand; } /** * 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. @@ -49,7 +46,7 @@ public: /** * The name of the command as specified in CMakeList.txt. */ - virtual std::string GetName() const { return "find_program";} + virtual std::string GetName() const { return "find_program"; } cmTypeMacro(cmFindProgramCommand, cmFindBase); @@ -60,9 +57,6 @@ private: std::string FindNormalProgramNamesPerDir(); std::string FindAppBundle(); std::string GetBundleExecutable(std::string bundlePath); - }; - - #endif |