git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@275748 91177308-0d34-0410-b5e6-96231b3b80d8
@@ -22,6 +22,10 @@
#include "test_macros.h"
#include "type_id.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"
+
template <class Tuple>
struct ConstexprConstructibleFromTuple {
template <class ...Args>