From d11fdad33ef1ba9a8329339490f1d1f6b971cbbc Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Sun, 23 Oct 2016 22:24:11 +0000 Subject: [PATCH] Backout enabling -Wshadow until I have time to fix the breakage llvm-svn: 284952 --- libcxx/test/libcxx/test/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libcxx/test/libcxx/test/config.py b/libcxx/test/libcxx/test/config.py index 7db7636..4e989b8 100644 --- a/libcxx/test/libcxx/test/config.py +++ b/libcxx/test/libcxx/test/config.py @@ -627,7 +627,8 @@ class Configuration(object): '-D_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER', '-Wall', '-Wextra', '-Werror' ] - self.cxx.addWarningFlagIfSupported('-Wshadow') + # FIXME turn this back on after fixing potential breakage. + #self.cxx.addWarningFlagIfSupported('-Wshadow') self.cxx.addWarningFlagIfSupported('-Wno-unused-command-line-argument') self.cxx.addWarningFlagIfSupported('-Wno-attributes') self.cxx.addWarningFlagIfSupported('-Wno-pessimizing-move') -- 2.7.4