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