mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-23 13:50:11 +00:00
49e7ef2c09
When running in MSVC compatibility mode, previously no deprecated copy operation warnings (enabled by -Wdeprecated-copy) were raised. This restriction was already in place when the deprecated copy warning was first introduced. This patch removes said restriction so that deprecated copy warnings, if enabled, are also raised in MSVC compatibility mode. The reasoning here being that these warnings are still useful when running in MSVC compatibility mode and also have to be semi-explicitly enabled in the first place (using -Wdeprecated-copy, -Wdeprecated or -Wextra). Differential Revision: https://reviews.llvm.org/D133354
14 lines
575 B
C++
14 lines
575 B
C++
// RUN: %clang_cc1 -std=c++11 %s -Wdeprecated -verify
|
|
// RUN: %clang_cc1 -std=c++11 %s -Wdeprecated -verify -fms-compatibility
|
|
// RUN: %clang_cc1 -std=c++11 %s -Wdeprecated-copy-with-user-provided-dtor -verify
|
|
// RUN: %clang_cc1 -std=c++11 %s -Wdeprecated-copy-with-user-provided-dtor -verify -fms-compatibility
|
|
|
|
struct A {
|
|
~A(); // expected-warning {{definition of implicit copy constructor for 'A' is deprecated because it has a user-provided destructor}}
|
|
};
|
|
|
|
void test() {
|
|
A a1;
|
|
A a2(a1); // expected-note {{implicit copy constructor for 'A' first required here}}
|
|
}
|