summaryrefslogtreecommitdiffstats
path: root/Source/cmEndForEachCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmEndForEachCommand.h')
-rw-r--r--Source/cmEndForEachCommand.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/Source/cmEndForEachCommand.h b/Source/cmEndForEachCommand.h
index c3be387..ebc794f 100644
--- a/Source/cmEndForEachCommand.h
+++ b/Source/cmEndForEachCommand.h
@@ -25,24 +25,23 @@ public:
/**
* This is a virtual constructor for the command.
*/
- virtual cmCommand* Clone()
- {
- return new cmEndForEachCommand;
- }
+ virtual cmCommand* Clone() { return new cmEndForEachCommand; }
/**
* 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 "endforeach";}
+ virtual std::string GetName() const { return "endforeach"; }
cmTypeMacro(cmEndForEachCommand, cmCommand);
};
-
#endif