summaryrefslogtreecommitdiff
path: root/Source/cmSourceGroupCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmSourceGroupCommand.h')
-rw-r--r--Source/cmSourceGroupCommand.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmSourceGroupCommand.h b/Source/cmSourceGroupCommand.h
index 6a29fc810..6c87b7101 100644
--- a/Source/cmSourceGroupCommand.h
+++ b/Source/cmSourceGroupCommand.h
@@ -26,7 +26,7 @@ public:
/**
* This is a virtual constructor for the command.
*/
- virtual cmCommand* Clone()
+ virtual cmCommand* Clone()
{
return new cmSourceGroupCommand;
}
@@ -37,7 +37,7 @@ public:
*/
virtual bool InitialPass(std::vector<std::string> const& args,
cmExecutionStatus &status);
-
+
/**
* The name of the command as specified in CMakeList.txt.
*/
@@ -50,7 +50,7 @@ public:
{
return "Define a grouping for sources in the makefile.";
}
-
+
/**
* More documentation.
*/
@@ -72,7 +72,7 @@ public:
"format:\n"
" source_group(name regex)";
}
-
+
cmTypeMacro(cmSourceGroupCommand, cmCommand);
};