blob: 1dde3d3141fec24d0249070d4c0b8c37597cc480 [file] [log] [blame]
Dan Albert1d4a1ed2016-05-25 22:36:09 -07001#ifndef SUPPRESS_ARRAY_WARNINGS_H
2#define SUPPRESS_ARRAY_WARNINGS_H
3
4// std::array is explicitly allowed to be initialized with A a = { init-list };.
5// Disable the missing braces warning for this reason.
6#pragma GCC diagnostic ignored "-Wmissing-braces"
7
8#endif // SUPPRESS_ARRAY_WARNINGS