diff options
Diffstat (limited to 'Source/cmGetSourceFilePropertyCommand.h')
-rw-r--r-- | Source/cmGetSourceFilePropertyCommand.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/Source/cmGetSourceFilePropertyCommand.h b/Source/cmGetSourceFilePropertyCommand.h index ab8ce36..06f582f 100644 --- a/Source/cmGetSourceFilePropertyCommand.h +++ b/Source/cmGetSourceFilePropertyCommand.h @@ -17,26 +17,21 @@ class cmGetSourceFilePropertyCommand : public cmCommand { public: - virtual cmCommand* Clone() - { - return new cmGetSourceFilePropertyCommand; - } + virtual cmCommand* Clone() { return new cmGetSourceFilePropertyCommand; } /** * This is called when the command is first encountered in * the input 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 "get_source_file_property";} + virtual std::string GetName() const { return "get_source_file_property"; } cmTypeMacro(cmGetSourceFilePropertyCommand, cmCommand); }; - - #endif |