[libcxx-commits] [libcxx] 06e5ebf - [libcxx] Add -Wno-deprecated-copy to the test config

David Zarzycki via libcxx-commits libcxx-commits at lists.llvm.org
Fri Nov 29 00:00:09 PST 2019


Author: David Zarzycki
Date: 2019-11-29T09:57:51+02:00
New Revision: 06e5ebf8dbd9c19c2ef58e6eee6346de8688bc5b

URL: https://github.com/llvm/llvm-project/commit/06e5ebf8dbd9c19c2ef58e6eee6346de8688bc5b
DIFF: https://github.com/llvm/llvm-project/commit/06e5ebf8dbd9c19c2ef58e6eee6346de8688bc5b.diff

LOG: [libcxx] Add -Wno-deprecated-copy to the test config

Added: 
    

Modified: 
    libcxx/utils/libcxx/test/config.py

Removed: 
    


################################################################################
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 @@ def configure_warnings(self):
         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')


        


More information about the libcxx-commits mailing list