[libcxx] r346451 - Attempt to enable -Wconversion

Eric Fiselier eric at efcs.ca
Thu Nov 8 15:57:33 PST 2018


Author: ericwf
Date: Thu Nov  8 15:57:32 2018
New Revision: 346451

URL: http://llvm.org/viewvc/llvm-project?rev=346451&view=rev
Log:
Attempt to enable -Wconversion

Modified:
    libcxx/trunk/utils/libcxx/test/config.py

Modified: libcxx/trunk/utils/libcxx/test/config.py
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/utils/libcxx/test/config.py?rev=346451&r1=346450&r2=346451&view=diff
==============================================================================
--- libcxx/trunk/utils/libcxx/test/config.py (original)
+++ libcxx/trunk/utils/libcxx/test/config.py Thu Nov  8 15:57:32 2018
@@ -932,7 +932,7 @@ class Configuration(object):
         self.cxx.addWarningFlagIfSupported('-Wunused-parameter')
         self.cxx.addWarningFlagIfSupported('-Wunreachable-code')
         # FIXME: Enable the two warnings below.
-        self.cxx.addWarningFlagIfSupported('-Wno-conversion')
+        # self.cxx.addWarningFlagIfSupported('-Wno-conversion')
         self.cxx.addWarningFlagIfSupported('-Wno-unused-local-typedef')
         std = self.get_lit_conf('std', None)
         if std in ['c++98', 'c++03']:




More information about the libcxx-commits mailing list