diff options
author | Brad King <brad.king@kitware.com> | 2010-06-09 09:22:47 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-06-09 09:32:34 -0400 |
commit | f9f46f19ee43f69956035a809e6668f96601f7c3 (patch) | |
tree | 2bec0631c996a752e34a44da9b6633a046168dff /CTestCustom.cmake.in | |
parent | 0033245e2fe8c418fb2df09ec62e46fc2ac92b6b (diff) | |
download | cmake-f9f46f19ee43f69956035a809e6668f96601f7c3.tar.gz |
Suppress SGI MIPSpro warning 3968
The warning appears everywhere we use static_cast to explicitly truncate
an integer width. It appears in the form
cc-3968 CC: WARNING File = ..., Line = ...
implicit conversion of a 64-bit integral type to a smaller
integral type (potential portability problem)
static_cast<...>(...);
^
which is strange because a "static_cast" is not implicit. It also
appears in system library code.
Diffstat (limited to 'CTestCustom.cmake.in')
-rw-r--r-- | CTestCustom.cmake.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in index ca8f9862e9..d5789ede95 100644 --- a/CTestCustom.cmake.in +++ b/CTestCustom.cmake.in @@ -39,7 +39,7 @@ SET(CTEST_CUSTOM_WARNING_EXCEPTION "warning:.*is.*very unsafe.*consider using.*" "warning:.*is.*misused, please use.*" "CMakeSetupManifest.xml.*manifest authoring warning.*Unrecognized Element" - "cc-3968 CC: WARNING File.*/usr/include/CC/fstream" + "cc-3968 CC: WARNING File.*" # "implicit" truncation by static_cast ) IF(NOT "@CMAKE_GENERATOR@" MATCHES "Xcode") |