summaryrefslogtreecommitdiffstats
path: root/Source/cmTargetSourcesCommand.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-01-07 07:58:51 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-01-08 21:28:18 (GMT)
commit55a73e6b1f70b3c8a783b130dff4c4689cea5ba2 (patch)
treeac22109c28ecd6b59d6f538efdc8ece375388928 /Source/cmTargetSourcesCommand.cxx
parent8dc8d756bc278cd02f329b31218c2459908dc0bb (diff)
downloadCMake-55a73e6b1f70b3c8a783b130dff4c4689cea5ba2.zip
CMake-55a73e6b1f70b3c8a783b130dff4c4689cea5ba2.tar.gz
CMake-55a73e6b1f70b3c8a783b130dff4c4689cea5ba2.tar.bz2
Use the cmJoin algorithm where possible.
Diffstat (limited to 'Source/cmTargetSourcesCommand.cxx')
-rw-r--r--Source/cmTargetSourcesCommand.cxx10
1 files changed, 1 insertions, 9 deletions
diff --git a/Source/cmTargetSourcesCommand.cxx b/Source/cmTargetSourcesCommand.cxx
index ce3b11e..31a47b7 100644
--- a/Source/cmTargetSourcesCommand.cxx
+++ b/Source/cmTargetSourcesCommand.cxx
@@ -44,15 +44,7 @@ void cmTargetSourcesCommand
std::string cmTargetSourcesCommand
::Join(const std::vector<std::string> &content)
{
- std::string srcs;
- std::string sep;
- for(std::vector<std::string>::const_iterator it = content.begin();
- it != content.end(); ++it)
- {
- srcs += sep + *it;
- sep = ";";
- }
- return srcs;
+ return cmJoin(content, ";");
}
//----------------------------------------------------------------------------