[Solved] std::array as element type of another standard container? [closed]
[ad_1] everything seems to be ok with this code. #include <vector> #include <array> int main() { std::vector< std::array<int,8> > output; output.resize(8); return 0; } Ideone test example Have you added the #include <array> line? 5 [ad_2] solved std::array as element type of another standard container? [closed]