Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
問題は、多くの場合、コンパイラのバージョンです。次のコードはGCC4.7.1で正常に機能します。
#include <array> struct X{ std::array<int, 2> a; X() : a{{1,2}} {} }; int main(){ X x; }
実例。