J
JKop
int main()
{
float blah( float() );
blah = 5.2;
}
Why the hell does g++ think that that's a function declaration?!
It's telling me that I can't assign a value to a function!
Is this a bug in g++?
-JKop
{
float blah( float() );
blah = 5.2;
}
Why the hell does g++ think that that's a function declaration?!
It's telling me that I can't assign a value to a function!
Is this a bug in g++?
-JKop