S
Sabyasachi Basu
You might be best off rewriting your macros, and thus the macro
How do I use #if directives to put tests in the actual macros? Arent
preprocessor directives disallowed within macro definitions?
calls, for portability. Remember that macros perform text
replacement, and that the components must be suitable language
components. You could put tests in the actual macros to
eliminate specific arguments, using #if statements. Then the
calls might be something like:
B(NULL, "Hello world");
How do I use #if directives to put tests in the actual macros? Arent
preprocessor directives disallowed within macro definitions?