Suppress warning in make_from_tuple tests.

llvm-svn: 275748
This commit is contained in:
Eric Fiselier 2016-07-18 01:52:46 +00:00
parent e33579072d
commit 1447da3383
1 changed files with 4 additions and 0 deletions

View File

@ -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>