blob: 1dde3d3141fec24d0249070d4c0b8c37597cc480 (
plain)
1
2
3
4
5
6
7
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
|