From 06e5ebf8dbd9c19c2ef58e6eee6346de8688bc5b Mon Sep 17 00:00:00 2001 From: David Zarzycki Date: Fri, 29 Nov 2019 09:22:56 +0200 Subject: [PATCH] [libcxx] Add -Wno-deprecated-copy to the test config --- libcxx/utils/libcxx/test/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/libcxx/utils/libcxx/test/config.py b/libcxx/utils/libcxx/test/config.py index 07657ea6e4f8..befe75c20e76 100644 --- a/libcxx/utils/libcxx/test/config.py +++ b/libcxx/utils/libcxx/test/config.py @@ -915,6 +915,7 @@ class Configuration(object): self.cxx.addWarningFlagIfSupported('-Wshadow') self.cxx.addWarningFlagIfSupported('-Wno-unused-command-line-argument') self.cxx.addWarningFlagIfSupported('-Wno-attributes') + self.cxx.addWarningFlagIfSupported('-Wno-deprecated-copy') self.cxx.addWarningFlagIfSupported('-Wno-constant-evaluated') self.cxx.addWarningFlagIfSupported('-Wno-pessimizing-move') self.cxx.addWarningFlagIfSupported('-Wno-c++11-extensions')