mirror of
https://github.com/llvm-mirror/libcxx.git
synced 2025-10-23 18:38:30 +08:00
[libcxx] [test] Silence warning C4324 for MSVC.
This warning "structure was padded due to alignment specifier" says that the compiler is going to do exactly what you asked it to do. It's triggered by the tests for over-aligned dynamic memory allocation. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@314257 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -54,6 +54,7 @@ const AssertionDialogAvoider assertion_dialog_avoider{};
|
||||
|
||||
// Silence compiler warnings.
|
||||
#pragma warning(disable: 4180) // qualifier applied to function type has no meaning; ignored
|
||||
#pragma warning(disable: 4324) // structure was padded due to alignment specifier
|
||||
#pragma warning(disable: 4521) // multiple copy constructors specified
|
||||
#pragma warning(disable: 4702) // unreachable code
|
||||
#pragma warning(disable: 28251) // Inconsistent annotation for 'new': this instance has no annotations.
|
||||
|
Reference in New Issue
Block a user