|
|
|
|
|
by mark_undoio
1266 days ago
|
|
Because there's really a switch statement (hidden behind a macro) that will jump to labels within that block. The fact that the if condition is false means it won't just run the whole block straight through but you can still jump to a label in it. A goto statement would also allow you to jump into an otherwise-unreachable block. |
|