diff options
Diffstat (limited to 'libcxx/test/std/containers/sequences/array/array.tuple/get.pass.cpp')
-rw-r--r-- | libcxx/test/std/containers/sequences/array/array.tuple/get.pass.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libcxx/test/std/containers/sequences/array/array.tuple/get.pass.cpp b/libcxx/test/std/containers/sequences/array/array.tuple/get.pass.cpp index c4557078fc4..4f210c4f762 100644 --- a/libcxx/test/std/containers/sequences/array/array.tuple/get.pass.cpp +++ b/libcxx/test/std/containers/sequences/array/array.tuple/get.pass.cpp @@ -16,7 +16,9 @@ #include "test_macros.h" -#include "../suppress_array_warnings.h" +// std::array is explicitly allowed to be initialized with A a = { init-list };. +// Disable the missing braces warning for this reason. +#include "disable_missing_braces_warning.h" #if TEST_STD_VER > 11 |