diff options
author | Brad King <brad.king@kitware.com> | 2010-06-25 12:48:59 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-06-25 13:05:15 (GMT) |
commit | 6fc4cd86806b349c804cf9dacb2dd04c289a684f (patch) | |
tree | d14bd8a90831a301d911629357a613262bc4e9d4 /Source/cmStringCommand.cxx | |
parent | da0190a4a7511b33e6c373b735ccd2e132e083e5 (diff) | |
download | CMake-6fc4cd86806b349c804cf9dacb2dd04c289a684f.zip CMake-6fc4cd86806b349c804cf9dacb2dd04c289a684f.tar.gz CMake-6fc4cd86806b349c804cf9dacb2dd04c289a684f.tar.bz2 |
Fix or cast integer conversions in cmake
These were revealed by GCC's -Wconversion option. Fix types where it is
easy to do so. Cast in cases we know the integer will not be truncated.
Diffstat (limited to 'Source/cmStringCommand.cxx')
-rw-r--r-- | Source/cmStringCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmStringCommand.cxx b/Source/cmStringCommand.cxx index 3bd47a4..19f5c0f 100644 --- a/Source/cmStringCommand.cxx +++ b/Source/cmStringCommand.cxx @@ -739,7 +739,7 @@ bool cmStringCommand alphabet = cmStringCommandDefaultAlphabet; } - double sizeofAlphabet = alphabet.size(); + double sizeofAlphabet = static_cast<double>(alphabet.size()); if ( sizeofAlphabet < 1 ) { this->SetError("sub-command RANDOM invoked with bad alphabet."); |