runtime
runtime copied to clipboard
Warn on unused PreProcessor arg
-
// Should create a warning because
unusedis not being used in the macro but present in the define #define foo(unused) bar foo(something) -
// Should not create a warning as define contents are empty #define foo(unused) foo(something)