Hi, I keep getting an undefined identifier error when I try to do this:
typedef char bool; // Make a bool type
char false = 0, true = 1; // Make true and false
void foo()
{
switch (something)
{
case 1:
bool aaaaa;
break;
}
}
It only gives me an error it if i try to declare it in a case. Please help :P