diff options
Diffstat (limited to 'Source/cmSetTestsPropertiesCommand.h')
-rw-r--r-- | Source/cmSetTestsPropertiesCommand.h | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/Source/cmSetTestsPropertiesCommand.h b/Source/cmSetTestsPropertiesCommand.h index dabe944..e469b2a 100644 --- a/Source/cmSetTestsPropertiesCommand.h +++ b/Source/cmSetTestsPropertiesCommand.h @@ -17,31 +17,25 @@ class cmSetTestsPropertiesCommand : public cmCommand { public: - virtual cmCommand* Clone() - { - return new cmSetTestsPropertiesCommand; - } + virtual cmCommand* Clone() { return new cmSetTestsPropertiesCommand; } /** * 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 "set_tests_properties";} + virtual std::string GetName() const { return "set_tests_properties"; } cmTypeMacro(cmSetTestsPropertiesCommand, cmCommand); static bool SetOneTest(const std::string& tname, - std::vector<std::string> &propertyPairs, - cmMakefile *mf, - std::string &errors); + std::vector<std::string>& propertyPairs, + cmMakefile* mf, std::string& errors); }; - - #endif |