Using this member initialization ...
StatsScreen::StatsScreen( GameState::State level )
: m_Level( level ) {
...
}
I get the following warning ...
extended initializer lists only available with -std=c++0x or -std=gnu++0x
Any information on this warning?
Edit: the warning was deleted after I deleted one of the members that was assigned a value inside the constructor (failed to execute through member initialization) and made it a local variable instead of a class member. Still want to know what that means, however.
source
share