summaryrefslogtreecommitdiff
path: root/Source/cmEndForEachCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmEndForEachCommand.h')
-rw-r--r--Source/cmEndForEachCommand.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmEndForEachCommand.h b/Source/cmEndForEachCommand.h
index 37b2d2a32..d5ee8a6ae 100644
--- a/Source/cmEndForEachCommand.h
+++ b/Source/cmEndForEachCommand.h
@@ -25,7 +25,7 @@ public:
/**
* This is a virtual constructor for the command.
*/
- virtual cmCommand* Clone()
+ virtual cmCommand* Clone()
{
return new cmEndForEachCommand;
}
@@ -36,7 +36,7 @@ public:
*/
virtual bool InvokeInitialPass(std::vector<cmListFileArgument> const&,
cmExecutionStatus &);
-
+
/**
* This is called when the command is first encountered in
* the CMakeLists.txt file.
@@ -61,7 +61,7 @@ public:
{
return "Ends a list of commands in a FOREACH block.";
}
-
+
/**
* More documentation.
*/
@@ -71,7 +71,7 @@ public:
" endforeach(expression)\n"
"See the FOREACH command.";
}
-
+
cmTypeMacro(cmEndForEachCommand, cmCommand);
};