summaryrefslogtreecommitdiffstats
path: root/Source/cmGetTestPropertyCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmGetTestPropertyCommand.h')
-rw-r--r--Source/cmGetTestPropertyCommand.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/Source/cmGetTestPropertyCommand.h b/Source/cmGetTestPropertyCommand.h
index 2819492..fc281c4 100644
--- a/Source/cmGetTestPropertyCommand.h
+++ b/Source/cmGetTestPropertyCommand.h
@@ -17,26 +17,21 @@
class cmGetTestPropertyCommand : public cmCommand
{
public:
- virtual cmCommand* Clone()
- {
- return new cmGetTestPropertyCommand;
- }
+ virtual cmCommand* Clone() { return new cmGetTestPropertyCommand; }
/**
* 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_test_property";}
+ virtual std::string GetName() const { return "get_test_property"; }
cmTypeMacro(cmGetTestPropertyCommand, cmCommand);
};
-
-
#endif