Suppress warning in make_from_tuple tests.
authorEric Fiselier <eric@efcs.ca>
Mon, 18 Jul 2016 01:52:46 +0000 (01:52 +0000)
committerEric Fiselier <eric@efcs.ca>
Mon, 18 Jul 2016 01:52:46 +0000 (01:52 +0000)
llvm-svn: 275748

libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/make_from_tuple.pass.cpp

index 6d5cc2b..143ae19 100644 (file)
 #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>