diff options
Diffstat (limited to 'Source/cmEndForEachCommand.cxx')
-rw-r--r-- | Source/cmEndForEachCommand.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/cmEndForEachCommand.cxx b/Source/cmEndForEachCommand.cxx index aa9a333..717e44d 100644 --- a/Source/cmEndForEachCommand.cxx +++ b/Source/cmEndForEachCommand.cxx @@ -16,9 +16,12 @@ =========================================================================*/ #include "cmEndForEachCommand.h" -bool cmEndForEachCommand::InvokeInitialPass(std::vector<cmListFileArgument> const&) +bool cmEndForEachCommand +::InvokeInitialPass(std::vector<cmListFileArgument> const&) { - this->SetError("An ENDFOREACH command was found outside of a proper FOREACH ENDFOREACH structure. Or its arguments did not match the opening FOREACH command."); + 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; } |