25-04-2012, 04:41 PM
I am a little confused. Suppose the code reads like so:
In this case, the # is not applied to the macro argument. Does the mere fact a macro parameter exists in the macro definition render the macro in violation? What about
where the parameter exists but is not used in the definition?
Code:
#define QWER(x) { asm x ASDF #$7F; }
Code:
#define QWER(x) { asm ASDF #$7F; }