Here is my code:
bool Character::keyPress(char c)
{
switch(c)
{
case up_key:
move(0, -1);
break;
case down_key:
move(0, 1);
break;
case left_key:
move(-1, 0);
break;
case right_key:
move(1,0);
break;
default:
return false;
}
return true;
}
And the compiler complains:
error C2051: case expression not constant
error C2051: case expression not constant
error C2051: case expression not constant
error C2051: case expression not constant
in my header file I have:
protected:
char up_key;
char down_key;
char right_key;
char left_key;
I am using vc2008. Thanks
static const char up_key = 1;and such, and problem solved. – Mooing Duck Jan 19 '12 at 4:06switchwere introduced as a "nicer" presentation that was transformed into an array look-up automagically (and thus required constants). Nowadays it makes less sense, but the syntax has not been changed so... – Matthieu M. Jan 19 '12 at 7:49