summaryrefslogtreecommitdiff
path: root/Source/cmEndWhileCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmEndWhileCommand.h')
-rw-r--r--Source/cmEndWhileCommand.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmEndWhileCommand.h b/Source/cmEndWhileCommand.h
index 635ad5a7f..18ba5ea31 100644
--- a/Source/cmEndWhileCommand.h
+++ b/Source/cmEndWhileCommand.h
@@ -25,7 +25,7 @@ public:
/**
* This is a virtual constructor for the command.
*/
- virtual cmCommand* Clone()
+ virtual cmCommand* Clone()
{
return new cmEndWhileCommand;
}
@@ -36,7 +36,7 @@ public:
*/
virtual bool InvokeInitialPass(std::vector<cmListFileArgument> const& args,
cmExecutionStatus &status);
-
+
/**
* 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 while block.";
}
-
+
/**
* More documentation.
*/
@@ -71,7 +71,7 @@ public:
" endwhile(expression)\n"
"See the while command.";
}
-
+
cmTypeMacro(cmEndWhileCommand, cmCommand);
};