Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Try to reenable -Wdeprecated-copy under -Wextra | Dávid Bolvanský | 2019-11-27 | 1 | -0/+1 |
| | |||||
* | Partially reland "[Diagnostics] Put "deprecated copy" warnings into ↵ | Dávid Bolvanský | 2019-11-26 | 1 | -0/+22 |
| | | | | | | -Wdeprecated-copy"" But do not enable it under -Wextra until libcxx issue is solved. | ||||
* | Revert "[Diagnostics] Put "deprecated copy" warnings into -Wdeprecated-copy" | Tom Stellard | 2019-11-25 | 1 | -23/+0 |
| | | | | | | This reverts commit 9353c5dd0664ea444236e527bf93566e11dc34df. This commit introduced bot falures for multi-stage bots with -Werror. | ||||
* | [Diagnostics] Put "deprecated copy" warnings into -Wdeprecated-copy | Dávid Bolvanský | 2019-11-22 | 1 | -0/+23 |
Summary: GCC 9 added -Wdeprecated-copy (as part of -Wextra). This diagnostic is already implemented in Clang too, just hidden under -Wdeprecated (not on by default). This patch adds -Wdeprecated-copy and makes it compatible with GCC 9+. This diagnostic is heavily tested in deprecated.cpp, so I added simple tests just to check we warn when new flag/-Wextra is enabled. Reviewers: rsmith, dblaikie Reviewed By: dblaikie Subscribers: cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D70342 |