diff options
author | David Cole <david.cole@kitware.com> | 2009-09-30 15:41:34 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2009-09-30 15:41:34 (GMT) |
commit | a9dcc7fd47048a25f79f04a0d0a57a81aede617b (patch) | |
tree | 367c4e907bdab9961e981e44a40de016fa7a574c /Source/cmComputeLinkInformation.cxx | |
parent | 67530409a91156b06b3f8076bbd2e96969319fd4 (diff) | |
download | CMake-a9dcc7fd47048a25f79f04a0d0a57a81aede617b.zip CMake-a9dcc7fd47048a25f79f04a0d0a57a81aede617b.tar.gz CMake-a9dcc7fd47048a25f79f04a0d0a57a81aede617b.tar.bz2 |
Fix warnings in CMake source code. Suppress warnings in Lexer and Parser files that are 'too hard' to fix.
Diffstat (limited to 'Source/cmComputeLinkInformation.cxx')
-rw-r--r-- | Source/cmComputeLinkInformation.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmComputeLinkInformation.cxx b/Source/cmComputeLinkInformation.cxx index 824408f..69a4d22 100644 --- a/Source/cmComputeLinkInformation.cxx +++ b/Source/cmComputeLinkInformation.cxx @@ -987,8 +987,8 @@ std::string cmComputeLinkInformation::NoCaseExpression(const char* str) else { ret += "["; - ret += tolower(*s); - ret += toupper(*s); + ret += static_cast<char>(tolower(*s)); + ret += static_cast<char>(toupper(*s)); ret += "]"; } s++; |