diff options
author | Brad King <brad.king@kitware.com> | 2016-01-08 15:43:30 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-01-08 15:43:30 (GMT) |
commit | bbf962bf8aaeda57a899ea5d35769c4eccd46096 (patch) | |
tree | 3705b8e7a05adfa19eb9ee48ae0bb6835e70e5c3 | |
parent | 4226c83fa23bf80b6fd3086fb49cf6d91b1a80fe (diff) | |
parent | b947fc27d5e8c54b2e4cd58c6c9b22b34a843039 (diff) | |
download | CMake-bbf962bf8aaeda57a899ea5d35769c4eccd46096.zip CMake-bbf962bf8aaeda57a899ea5d35769c4eccd46096.tar.gz CMake-bbf962bf8aaeda57a899ea5d35769c4eccd46096.tar.bz2 |
Merge topic 'suppress-Wshadow-single'
b947fc27 CTestCustom: Suppress -Wshadow warning about Solaris 'single' typedef
-rw-r--r-- | CTestCustom.cmake.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in index db64559..abef692 100644 --- a/CTestCustom.cmake.in +++ b/CTestCustom.cmake.in @@ -21,7 +21,8 @@ list(APPEND CTEST_CUSTOM_WARNING_EXCEPTION "Utilities.cmcurl" "Utilities.cmexpat." "Utilities.cmlibarchive" - "/usr/include.*warning.*shadowed declaration is here" + "warning: declaration of .single. shadows a global declaration" + "/usr/include.*(warning|note).*shadowed declaration is here" "/usr/bin/ld.*warning.*-..*directory.name.*bin.*does not exist" "Redeclaration of .send..... with a different storage class specifier" "is not used for resolving any symbol" |