The following code -
void STOP() { asm { int 3; }; }
- generates the warning:
Incorrect warning: use '{ }' for an empty statement, not a ';'
That's wrong, yeah?
The following code -
void STOP() { asm { int 3; }; }
- generates the warning:
Incorrect warning: use '{ }' for an empty statement, not a ';'
That's wrong, yeah?