summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/CTest/cmCTestCommand.h')
-rw-r--r--Source/CTest/cmCTestCommand.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/Source/CTest/cmCTestCommand.h b/Source/CTest/cmCTestCommand.h
index e2ebba8..22a2c8e 100644
--- a/Source/CTest/cmCTestCommand.h
+++ b/Source/CTest/cmCTestCommand.h
@@ -27,14 +27,16 @@ class cmCTestScriptHandler;
class cmCTestCommand : public cmCommand
{
public:
+ cmCTestCommand()
+ {
+ this->CTest = 0;
+ this->CTestScriptHandler = 0;
+ }
- cmCTestCommand() {this->CTest = 0; this->CTestScriptHandler = 0;}
-
- cmCTest *CTest;
- cmCTestScriptHandler *CTestScriptHandler;
+ cmCTest* CTest;
+ cmCTestScriptHandler* CTestScriptHandler;
cmTypeMacro(cmCTestCommand, cmCommand);
};
-
#endif