blob: 1dde3d3141fec24d0249070d4c0b8c37597cc480 [file] [log] [blame]
#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