|
ArvernOS
|
Macros | |
| #define | UNUSED(x) (void)(x) |
| #define | MAYBE_UNUSED(x) UNUSED(x) |
| Marks a variable as potentially unused. | |
| #define UNUSED | ( | x | ) | (void)(x) |
Marks a variable as unused so that the compiler does not raise a warning and we are aware of this variable not being used on purpose.