diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-01-07 07:58:51 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-01-08 21:28:18 (GMT) |
commit | 55a73e6b1f70b3c8a783b130dff4c4689cea5ba2 (patch) | |
tree | ac22109c28ecd6b59d6f538efdc8ece375388928 /Source/cmRST.cxx | |
parent | 8dc8d756bc278cd02f329b31218c2459908dc0bb (diff) | |
download | CMake-55a73e6b1f70b3c8a783b130dff4c4689cea5ba2.zip CMake-55a73e6b1f70b3c8a783b130dff4c4689cea5ba2.tar.gz CMake-55a73e6b1f70b3c8a783b130dff4c4689cea5ba2.tar.bz2 |
Use the cmJoin algorithm where possible.
Diffstat (limited to 'Source/cmRST.cxx')
-rw-r--r-- | Source/cmRST.cxx | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/Source/cmRST.cxx b/Source/cmRST.cxx index cca995b..f4607c6 100644 --- a/Source/cmRST.cxx +++ b/Source/cmRST.cxx @@ -417,14 +417,7 @@ void cmRST::ProcessDirectiveReplace() { // Record markup lines as replacement text. std::string& replacement = this->Replace[this->ReplaceName]; - const char* sep = ""; - for(std::vector<std::string>::iterator i = this->MarkupLines.begin(); - i != this->MarkupLines.end(); ++i) - { - replacement += sep; - replacement += *i; - sep = " "; - } + replacement += cmJoin(this->MarkupLines, " "); this->ReplaceName = ""; } |