summaryrefslogtreecommitdiff
path: root/Source/cmEnableLanguageCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmEnableLanguageCommand.h')
-rw-r--r--Source/cmEnableLanguageCommand.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/Source/cmEnableLanguageCommand.h b/Source/cmEnableLanguageCommand.h
index 2b09e1186a..657e4e5e1c 100644
--- a/Source/cmEnableLanguageCommand.h
+++ b/Source/cmEnableLanguageCommand.h
@@ -28,26 +28,21 @@ public:
/**
* This is a virtual constructor for the command.
*/
- virtual cmCommand* Clone()
- {
- return new cmEnableLanguageCommand;
- }
+ virtual cmCommand* Clone() { return new cmEnableLanguageCommand; }
/**
* 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);
/**
* The name of the command as specified in CMakeList.txt.
*/
- virtual std::string GetName() const {return "enable_language";}
+ virtual std::string GetName() const { return "enable_language"; }
cmTypeMacro(cmEnableLanguageCommand, cmCommand);
};
-
-
#endif