show/hide this revision's text 3 added 4 characters in body

It's not impossible that switching on a constant makes sense. Consider:

void f( const int x ) {
   switch( x ) {   
   ...
   }
}

Switching on a literal constant would rarely make sense, however. But it is legal.

Edit: Thinking about it, there is case where switching on a literal makes perfect senssense:

int main() {
    switch( CONFIG ) {
           ...
    }
}

where the program was copiled compiled with:

g++ -DCONFIG=42 foo.cpp
show/hide this revision's text 2 added 249 characters in body

It's not impossible that switching on a constant makes sense. Consider:

void f( const int x ) {
   switch( x ) {   
   ...
   }
}

Switching on a literal constant would rarely make sense, however. But it is legal.

Edit: Thinking about it, there is case where switching on a literal makes perfect sens:

int main() {
    switch( CONFIG ) {
           ...
    }
}

where the program was copiled with:

g++ -DCONFIG=42 foo.cpp
show/hide this revision's text 1

It's not impossible that switching on a constant makes sense. Consider:

void f( const int x ) {
   switch( x ) {   
   ...
   }
}

Switching on a literal constant would rarely make sense, however. But it is legal.