summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-12-26 20:00:27 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-12-26 20:00:27 (GMT)
commit32accc160762ca80f1138d4e9c710d9edb72479c (patch)
tree833c2501fd16b44dfd418e36f65ae3a46a854d45 /Source/cmSystemTools.cxx
parentb5035770bc15cf8ddaefe87ee2dc291cd29e07da (diff)
downloadCMake-32accc160762ca80f1138d4e9c710d9edb72479c.zip
CMake-32accc160762ca80f1138d4e9c710d9edb72479c.tar.gz
CMake-32accc160762ca80f1138d4e9c710d9edb72479c.tar.bz2
BUG: For consistency, use cmStdString. Also, there was a bug in SplitString which make it lose the first character.
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r--Source/cmSystemTools.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index 5c4f307..9716dc6 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -1066,19 +1066,19 @@ bool cmSystemTools::CreateSymlink(const char* origName, const char* newName)
#endif
-std::vector<std::string> cmSystemTools::SplitString(const char* p, char sep)
+std::vector<cmStdString> cmSystemTools::SplitString(const char* p, char sep)
{
std::string path = p;
- std::vector<std::string> paths;
+ std::vector<cmStdString> paths;
std::string::size_type pos1 = 0;
std::string::size_type pos2 = path.find(sep, pos1+1);
while(pos2 != std::string::npos)
{
- paths.push_back(path.substr(pos1+1, pos2-pos1-1));
- pos1 = pos2;
+ paths.push_back(path.substr(pos1, pos2-pos1));
+ pos1 = pos2+1;
pos2 = path.find(sep, pos1+1);
}
- paths.push_back(path.substr(pos1+1, pos2-pos1-1));
+ paths.push_back(path.substr(pos1, pos2-pos1));
return paths;
}
@@ -1104,8 +1104,8 @@ std::string cmSystemTools::RelativePath(const char* local, const char* remote)
}
std::string relativePath; // result string
// split up both paths into arrays of strings using / as a separator
- std::vector<std::string> fileSplit = cmSystemTools::SplitString(local);
- std::vector<std::string> relativeSplit = cmSystemTools::SplitString(remote);
+ std::vector<cmStdString> fileSplit = cmSystemTools::SplitString(local);
+ std::vector<cmStdString> relativeSplit = cmSystemTools::SplitString(remote);
// count up how many mathing directory names there are from the start
unsigned int sameCount = 0;
while(sameCount < fileSplit.size()-1 && sameCount < relativeSplit.size()-1 &&