diff options
Diffstat (limited to 'Source/cmEndMacroCommand.cxx')
-rw-r--r-- | Source/cmEndMacroCommand.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/cmEndMacroCommand.cxx b/Source/cmEndMacroCommand.cxx index 86d907b..435c05f 100644 --- a/Source/cmEndMacroCommand.cxx +++ b/Source/cmEndMacroCommand.cxx @@ -11,13 +11,11 @@ ============================================================================*/ #include "cmEndMacroCommand.h" -bool cmEndMacroCommand -::InvokeInitialPass(std::vector<cmListFileArgument> const&, - cmExecutionStatus &) +bool cmEndMacroCommand::InvokeInitialPass( + std::vector<cmListFileArgument> const&, cmExecutionStatus&) { this->SetError("An ENDMACRO command was found outside of a proper " "MACRO ENDMACRO structure. Or its arguments did not " "match the opening MACRO command."); return false; } - |