diff options
Diffstat (limited to 'Source/cmStringCommand.cxx')
-rw-r--r-- | Source/cmStringCommand.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmStringCommand.cxx b/Source/cmStringCommand.cxx index dabec47..ed88a1e 100644 --- a/Source/cmStringCommand.cxx +++ b/Source/cmStringCommand.cxx @@ -348,8 +348,8 @@ bool cmStringCommand::RegexReplace(std::vector<std::string> const& args) cmStringReplaceHelper replaceHelper(regex, replace, this->Makefile); if (!replaceHelper.IsReplaceExpressionValid()) { - this->SetError("sub-command REGEX, mode REPLACE: " + - replaceHelper.GetError() + "."); + this->SetError( + "sub-command REGEX, mode REPLACE: " + replaceHelper.GetError() + "."); return false; } @@ -369,8 +369,8 @@ bool cmStringCommand::RegexReplace(std::vector<std::string> const& args) std::string output; if (!replaceHelper.Replace(input, output)) { - this->SetError("sub-command REGEX, mode REPLACE: " + - replaceHelper.GetError() + "."); + this->SetError( + "sub-command REGEX, mode REPLACE: " + replaceHelper.GetError() + "."); return false; } |