diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-11-17 22:31:12 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-11-17 22:31:12 (GMT) |
commit | 86c32e96db5360e20e95c121f825f73e6bd0b0fe (patch) | |
tree | e7fafcd15cf2859ecc788832cefd8dcc720fbd65 /Source/cmLocalUnixMakefileGenerator.cxx | |
parent | dad83f4d3c0741e6ea9b2deafe839c4dfefdaff3 (diff) | |
download | CMake-86c32e96db5360e20e95c121f825f73e6bd0b0fe.zip CMake-86c32e96db5360e20e95c121f825f73e6bd0b0fe.tar.gz CMake-86c32e96db5360e20e95c121f825f73e6bd0b0fe.tar.bz2 |
fix some compiler warnings hopefully
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator.cxx b/Source/cmLocalUnixMakefileGenerator.cxx index f9a93e9..4db85ed 100644 --- a/Source/cmLocalUnixMakefileGenerator.cxx +++ b/Source/cmLocalUnixMakefileGenerator.cxx @@ -2517,7 +2517,7 @@ cmLocalUnixMakefileGenerator::CreateMakeVariable(const char* s, const char* s2) std::string ret = unmodified; // if the string is greater the 32 chars it is an invalid vairable name // for borland make - if(ret.size() > m_MakefileVariableSize) + if(static_cast<int>(ret.size()) > m_MakefileVariableSize) { int keep = m_MakefileVariableSize - 8; int size = keep + 3; @@ -2525,11 +2525,11 @@ cmLocalUnixMakefileGenerator::CreateMakeVariable(const char* s, const char* s2) std::string str2 = s2; // we must shorten the combined string by 4 charactors // keep no more than 24 charactors from the second string - if(str2.size() > keep) + if(static_cast<int>(str2.size()) > keep) { str2 = str2.substr(0, keep); } - if(str1.size() + str2.size() > size) + if(static_cast<int>(str1.size()) + static_cast<int>(str2.size()) > size) { str1 = str1.substr(0, size - str2.size()); } |