[libcxx] r289366 - Re-disable -Wsign-compare for now. I didn't catch all occurrences
Eric Fiselier via cfe-commits
cfe-commits at lists.llvm.org
Sat Dec 10 21:45:56 PST 2016
Author: ericwf
Date: Sat Dec 10 23:45:55 2016
New Revision: 289366
URL: http://llvm.org/viewvc/llvm-project?rev=289366&view=rev
Log:
Re-disable -Wsign-compare for now. I didn't catch all occurrences
Modified:
libcxx/trunk/test/libcxx/test/config.py
Modified: libcxx/trunk/test/libcxx/test/config.py
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/libcxx/test/config.py?rev=289366&r1=289365&r2=289366&view=diff
==============================================================================
--- libcxx/trunk/test/libcxx/test/config.py (original)
+++ libcxx/trunk/test/libcxx/test/config.py Sat Dec 10 23:45:55 2016
@@ -659,6 +659,7 @@ class Configuration(object):
# These warnings should be enabled in order to support the MSVC
# team using the test suite; They enable the warnings below and
# expect the test suite to be clean.
+ # FIXME: Re-enable this after fixing remaining occurrences.
self.cxx.addWarningFlagIfSupported('-Wsign-compare')
# FIXME: Enable the two warnings below.
self.cxx.addWarningFlagIfSupported('-Wno-unused-variable')
More information about the cfe-commits
mailing list