[libcxx] r289367 - Actually re-disable -Wsign-compare
Eric Fiselier via cfe-commits
cfe-commits at lists.llvm.org
Sat Dec 10 21:54:44 PST 2016
Author: ericwf
Date: Sat Dec 10 23:54:43 2016
New Revision: 289367
URL: http://llvm.org/viewvc/llvm-project?rev=289367&view=rev
Log:
Actually re-disable -Wsign-compare
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=289367&r1=289366&r2=289367&view=diff
==============================================================================
--- libcxx/trunk/test/libcxx/test/config.py (original)
+++ libcxx/trunk/test/libcxx/test/config.py Sat Dec 10 23:54:43 2016
@@ -660,7 +660,7 @@ class Configuration(object):
# 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')
+ self.cxx.addWarningFlagIfSupported('-Wno-sign-compare')
# FIXME: Enable the two warnings below.
self.cxx.addWarningFlagIfSupported('-Wno-unused-variable')
self.cxx.addWarningFlagIfSupported('-Wno-unused-parameter')
More information about the cfe-commits
mailing list