diff options
Diffstat (limited to 'Source/cmEndIfCommand.cxx')
-rw-r--r-- | Source/cmEndIfCommand.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmEndIfCommand.cxx b/Source/cmEndIfCommand.cxx index a16403e..8fe3a1b 100644 --- a/Source/cmEndIfCommand.cxx +++ b/Source/cmEndIfCommand.cxx @@ -25,7 +25,9 @@ bool cmEndIfCommand::InitialPass(std::vector<std::string> const&) return true; } - this->SetError("An ENDIF command was found outside of a proper IF ENDIF structure. Or its arguments did not match the opening IF command."); + this->SetError("An ENDIF command was found outside of a proper " + "IF ENDIF structure. Or its arguments did not match " + "the opening IF command."); return false; } |