diff options
author | Brad King <brad.king@kitware.com> | 2013-05-29 12:56:20 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-05-29 12:56:20 (GMT) |
commit | 2c0c59a2e182e25844ded2a551a79e58ab3b3c49 (patch) | |
tree | 55a7a37e8954f9a67c128dd49987067c7ccd0f9f /Source/kwsys/testSystemInformation.cxx | |
parent | 6927b25affcb9e2e01fb226970fd91db143b5101 (diff) | |
parent | 927012979e54a69d9d49f188ce73f7b4ca2fb073 (diff) | |
download | CMake-2c0c59a2e182e25844ded2a551a79e58ab3b3c49.zip CMake-2c0c59a2e182e25844ded2a551a79e58ab3b3c49.tar.gz CMake-2c0c59a2e182e25844ded2a551a79e58ab3b3c49.tar.bz2 |
Merge branch 'upstream-kwsys' into update-kwsys
Diffstat (limited to 'Source/kwsys/testSystemInformation.cxx')
-rw-r--r-- | Source/kwsys/testSystemInformation.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/kwsys/testSystemInformation.cxx b/Source/kwsys/testSystemInformation.cxx index 49a686c..738043f 100644 --- a/Source/kwsys/testSystemInformation.cxx +++ b/Source/kwsys/testSystemInformation.cxx @@ -88,9 +88,9 @@ int testSystemInformation(int, char*[]) printMethod3(info, GetHostMemoryUsed(), "KiB"); printMethod3(info, GetProcMemoryUsed(), "KiB"); - for (int i = 0; i <= 31; i++) + for (long int i = 0; i <= 31; i++) { - if (info.DoesCPUSupportFeature(1 << i)) + if (info.DoesCPUSupportFeature(static_cast<long int>(1) << i)) { kwsys_ios::cout << "CPU feature " << i << "\n"; } |