summaryrefslogtreecommitdiff
path: root/Source/cmElseCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmElseCommand.h')
-rw-r--r--Source/cmElseCommand.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmElseCommand.h b/Source/cmElseCommand.h
index 5e8b79058..f25991943 100644
--- a/Source/cmElseCommand.h
+++ b/Source/cmElseCommand.h
@@ -25,7 +25,7 @@ public:
/**
* This is a virtual constructor for the command.
*/
- virtual cmCommand* Clone()
+ virtual cmCommand* Clone()
{
return new cmElseCommand;
}
@@ -54,7 +54,7 @@ public:
{
return "Starts the else portion of an if block.";
}
-
+
/**
* More documentation.
*/
@@ -64,7 +64,7 @@ public:
" else(expression)\n"
"See the if command.";
}
-
+
cmTypeMacro(cmElseCommand, cmCommand);
};