Monday, 29 December 2014

GCC Compiler Warning: extended initializer lists only available with c++0x

How do you remove the compilation warning : 
extended initializer lists only available with c++0x  ??

You can remove it by compiling your code with :-
g++ -std=c++0x test.cpp

No comments:

Post a Comment