[Bug c++/59005] Having designated inits in C++ with -std=c++11 does not cause any errors

2013-11-05 Thread p.micolet at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59005 --- Comment #4 from p.micolet at gmail dot com --- Hi Daniel, I think it's a gcc extension, but it's not part of the C++11 standard, so surely adding the -std=c++11 should cause this code to not compile or am I misunderstanding something ? Thanks

[Bug c++/59005] Having designated inits in C++ with -std=c++11 does not cause any errors

2013-11-05 Thread p.micolet at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59005 --- Comment #1 from p.micolet at gmail dot com --- Also saw this issue using GCC 4.7.0, same target, same flags and same code

[Bug c++/59005] New: Having designated inits in C++ with -std=c++11 does not cause any errors

2013-11-05 Thread p.micolet at gmail dot com
Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: p.micolet at gmail dot com This piece of code: #include using namespace std; int main(int argc, char** argv) { int test[2][2] ={ [0]={1,2}, [1]={3,4