Commit file missing from r242629

llvm-svn: 242630
This commit is contained in:
Eric Fiselier 2015-07-19 00:11:50 +00:00
parent 2decfad7c5
commit 80fe6bd142
1 changed files with 8 additions and 0 deletions
libcxx/test/std/containers/sequences/array

View File

@ -0,0 +1,8 @@
#ifndef SUPPRESS_ARRAY_WARNINGS_H
#define 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.
#pragma GCC diagnostic ignored "-Wmissing-braces"
#endif // SUPPRESS_ARRAY_WARNINGS