diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-02-07 16:43:17 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-02-07 16:43:17 (GMT) |
commit | 2ed1ca11bc38b8de92c023ecc01d93a3b942071a (patch) | |
tree | 7129d7cabca008fc5a14b3aa5757c95b17701e24 /Source/kwsys/SystemTools.cxx | |
parent | 9740913dd8e131474c0842aa0f155f953d14e161 (diff) | |
download | CMake-2ed1ca11bc38b8de92c023ecc01d93a3b942071a.zip CMake-2ed1ca11bc38b8de92c023ecc01d93a3b942071a.tar.gz CMake-2ed1ca11bc38b8de92c023ecc01d93a3b942071a.tar.bz2 |
COMP: Fix compile problem on windows and mac
Diffstat (limited to 'Source/kwsys/SystemTools.cxx')
-rw-r--r-- | Source/kwsys/SystemTools.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx index 2c469ed..3bc092e 100644 --- a/Source/kwsys/SystemTools.cxx +++ b/Source/kwsys/SystemTools.cxx @@ -2442,8 +2442,8 @@ std::string SystemTools::RelativePath(const char* local, const char* remote) && // for windows and apple do a case insensitive string compare #if defined(_WIN32) || defined(__APPLE__) - cmSystemTools::Strucmp(localSplit[sameCount].c_str(), - remoteSplit[sameCount].c_str()) == 0 + SystemTools::Strucmp(localSplit[sameCount].c_str(), + remoteSplit[sameCount].c_str()) == 0 #else localSplit[sameCount] == remoteSplit[sameCount] #endif |