[libcxx] r343436 - Remove even more clang-cl warnings
Eric Fiselier
eric at efcs.ca
Sun Sep 30 18:47:24 PDT 2018
Author: ericwf
Date: Sun Sep 30 18:47:23 2018
New Revision: 343436
URL: http://llvm.org/viewvc/llvm-project?rev=343436&view=rev
Log:
Remove even more clang-cl warnings
Modified:
libcxx/trunk/CMakeLists.txt
Modified: libcxx/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/CMakeLists.txt?rev=343436&r1=343435&r2=343436&view=diff
==============================================================================
--- libcxx/trunk/CMakeLists.txt (original)
+++ libcxx/trunk/CMakeLists.txt Sun Sep 30 18:47:23 2018
@@ -561,7 +561,11 @@ if ("${CMAKE_CXX_COMPILER_ID}" MATCHES "
-Wno-reserved-id-macro
-Wno-gnu-include-next
-Wno-gcc-compat # For ignoring "'diagnose_if' is a clang extension" warnings
- -Wno-zero-as-null-pointer-constant # FIXME: Remove this and fix all occurances.
+ -Wno-zero-as-null-pointer-constant # FIXME: Remove this and fix all occurrences.
+ -Wno-deprecated-dynamic-exception-spec # For auto_ptr
+ -Wno-sign-conversion
+ -Wno-old-style-cast
+ -Wno-deprecated # FIXME: Remove this and fix all occurrences.
)
endif()
elseif("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU")
More information about the libcxx-commits
mailing list