Ignore unused variables

Back

In clang and GCC

int foo(__attribute__((unused)) int bar) {
}

Cross compiler

int foo(int bar) {
  (void)bar;
}