From 3b008ea03b8d35d57837711943dda37dc3951181 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 10 Feb 2005 10:35:23 -0500 Subject: COMP: std:: -> kwsys_stl:: --- Source/kwsys/SystemTools.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx index 84f207a..ecd6fe8 100644 --- a/Source/kwsys/SystemTools.cxx +++ b/Source/kwsys/SystemTools.cxx @@ -1635,7 +1635,7 @@ void SystemTools::SplitPath(const char* p, else if(c[0] && c[1] == ':' && c[2] == '/') { // Windows path. - std::string root = "_:/"; + kwsys_stl::string root = "_:/"; root[0] = c[0]; components.push_back(root); c += 3; @@ -1643,7 +1643,7 @@ void SystemTools::SplitPath(const char* p, else if(c[0] && c[1] == ':') { // Path relative to a windows drive working directory. - std::string root = "_:"; + kwsys_stl::string root = "_:"; root[0] = c[0]; components.push_back(root); c += 2; @@ -1662,7 +1662,7 @@ void SystemTools::SplitPath(const char* p, if(*last == '/') { // End of a component. Save it. - components.push_back(std::string(first, last-first)); + components.push_back(kwsys_stl::string(first, last-first)); first = last+1; } } @@ -1670,7 +1670,7 @@ void SystemTools::SplitPath(const char* p, // Save the last component unless there were no components. if(last != c) { - components.push_back(std::string(first, last-first)); + components.push_back(kwsys_stl::string(first, last-first)); } } -- cgit v0.12