Solution warning extended initializer lists only available with std c 0x or std gnu 0x
Solution warning extended initializer lists only available with std c 0x or std gnu 0x
you are initializing the object with To compile your code as C++0x code, just add the following flag when compiling:{...} instead of (...):StatsScreen ss{...}; // only available in C++0x
StatsScreen ss(...); // OK in C++98g++ test.cpp -std=c++0x
download file now
Comments
Post a Comment