summaryrefslogtreecommitdiff
path: root/Source/cmEndFunctionCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmEndFunctionCommand.h')
-rw-r--r--Source/cmEndFunctionCommand.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/Source/cmEndFunctionCommand.h b/Source/cmEndFunctionCommand.h
index 3a42c17432..b69dec028d 100644
--- a/Source/cmEndFunctionCommand.h
+++ b/Source/cmEndFunctionCommand.h
@@ -25,24 +25,23 @@ public:
/**
* This is a virtual constructor for the command.
*/
- virtual cmCommand* Clone()
- {
- return new cmEndFunctionCommand;
- }
+ virtual cmCommand* Clone() { return new cmEndFunctionCommand; }
/**
* Override cmCommand::InvokeInitialPass to get arguments before
* expansion.
*/
virtual bool InvokeInitialPass(std::vector<cmListFileArgument> const&,
- cmExecutionStatus &);
+ cmExecutionStatus&);
/**
* This is called when the command is first encountered in
* the CMakeLists.txt file.
*/
- virtual bool InitialPass(std::vector<std::string> const&,
- cmExecutionStatus &) {return false;}
+ virtual bool InitialPass(std::vector<std::string> const&, cmExecutionStatus&)
+ {
+ return false;
+ }
/**
* This determines if the command is invoked when in script mode.
@@ -52,10 +51,9 @@ public:
/**
* The name of the command as specified in CMakeList.txt.
*/
- virtual std::string GetName() const { return "endfunction";}
+ virtual std::string GetName() const { return "endfunction"; }
cmTypeMacro(cmEndFunctionCommand, cmCommand);
};
-
#endif