|
Graphviz 14.1.0~dev.20251205.0210
|
abstraction for squashing compiler warnings for unused symbols More...
Go to the source code of this file.
Macros | |
| #define | UNUSED /* nothing */ |
| #define | WUR /* nothing */ |
| #define UNUSED /* nothing */ |
squash an unused variable/function warning in C
e.g.
static UNUSED void my_uncalled_function(void) { } static UNUSED int my_unused_variable;
Use this sparingly, as the MSVC version applies to everything in both the current and next line, so can end up accidentally masking genuine problems.