[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git] / clang / test / SemaCXX / Inputs / warn-new-overaligned-3.h
blobd2bd4d509548a09f05a7ab85630e0e774c6f33b4
1 #pragma GCC system_header
3 // This header file pretends to be <new> from the system library, for the
4 // purpose of the over-aligned warnings test.
6 void* operator new(unsigned long) {
7 return 0;
9 void* operator new[](unsigned long) {
10 return 0;
13 void* operator new(unsigned long, void *) {
14 return 0;
17 void* operator new[](unsigned long, void *) {
18 return 0;