[libcxx-commits] [PATCH] D144775: [libc++][test] Add `-Wdeprecated-copy-with-user-provided-dtor` warning to the test suite

Igor Zhukov via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Fri Feb 24 22:00:04 PST 2023


fsb4000 created this revision.
fsb4000 added reviewers: libc++, philnik.
fsb4000 added a project: libc++.
Herald added a subscriber: arichardson.
Herald added a project: All.
fsb4000 requested review of this revision.
Herald added a subscriber: libcxx-commits.

follow up to https://reviews.llvm.org/D144694

`-Wdeprecated` warns about more things, so I added a minimal flag.

Let's see if CI passes.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D144775

Files:
  libcxx/utils/libcxx/test/params.py


Index: libcxx/utils/libcxx/test/params.py
===================================================================
--- libcxx/utils/libcxx/test/params.py
+++ libcxx/utils/libcxx/test/params.py
@@ -51,6 +51,7 @@
   '-Wunused-parameter',
   '-Wunreachable-code',
   '-Wno-unused-local-typedef',
+  '-Wdeprecated-copy-with-user-provided-dtor',
 ]
 
 _allStandards = ['c++03', 'c++11', 'c++14', 'c++17', 'c++20', 'c++2b']


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D144775.500361.patch
Type: text/x-patch
Size: 413 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230225/3b78b8eb/attachment.bin>


More information about the libcxx-commits mailing list