forked from OSchip/llvm-project
Suppress -Waligned-allocation-unavailable warning in libc++ test suite
llvm-svn: 307218
This commit is contained in:
parent
9f9e99be20
commit
226dbd78eb
|
@ -888,6 +888,7 @@ class Configuration(object):
|
|||
self.cxx.addWarningFlagIfSupported('-Wno-c++11-extensions')
|
||||
self.cxx.addWarningFlagIfSupported('-Wno-user-defined-literals')
|
||||
self.cxx.addWarningFlagIfSupported('-Wno-noexcept-type')
|
||||
self.cxx.addWarningFlagIfSupported('-Wno-aligned-allocation-unavailable')
|
||||
# These warnings should be enabled in order to support the MSVC
|
||||
# team using the test suite; They enable the warnings below and
|
||||
# expect the test suite to be clean.
|
||||
|
|
Loading…
Reference in New Issue