From d8e3e932bf26dca4f79da9e1f34e34bee970d959 Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Sun, 11 Dec 2016 05:54:43 +0000 Subject: [PATCH] Actually re-disable -Wsign-compare git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@289367 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/libcxx/test/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/libcxx/test/config.py b/test/libcxx/test/config.py index 20441d4b4..59b3394fd 100644 --- a/test/libcxx/test/config.py +++ b/test/libcxx/test/config.py @@ -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')