runtime icon indicating copy to clipboard operation
runtime copied to clipboard

Warn on unused PreProcessor arg

Open X39 opened this issue 5 years ago • 0 comments

  1. // Should create a warning because unused is not being used in the macro but present in the define #define foo(unused) bar foo(something)

  2. // Should not create a warning as define contents are empty #define foo(unused) foo(something)

X39 avatar Jun 26 '20 10:06 X39