From 9740913dd8e131474c0842aa0f155f953d14e161 Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Tue, 7 Feb 2006 10:43:45 -0500 Subject: COMP: Fix build problem --- Source/kwsys/SystemTools.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx index 5da7606..2c469ed 100644 --- a/Source/kwsys/SystemTools.cxx +++ b/Source/kwsys/SystemTools.cxx @@ -2475,7 +2475,7 @@ std::string SystemTools::RelativePath(const char* local, const char* remote) } // for each entry that is not common in the remote path add it // to the final path. - for(std::vector::iterator i = remoteSplit.begin(); + for(std::vector::iterator i = remoteSplit.begin(); i != remoteSplit.end(); ++i) { if(i->size()) @@ -2486,7 +2486,7 @@ std::string SystemTools::RelativePath(const char* local, const char* remote) std::string relativePath; // result string // now turn the array of directories into a unix path by puttint / // between each entry that does not already have one - for(std::vector::iterator i = finalPath.begin(); + for(std::vector::iterator i = finalPath.begin(); i != finalPath.end(); ++i) { if(relativePath.size() && relativePath[relativePath.size()-1] != '/') -- cgit v0.12