Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 220 Bytes

unused-variables.md

File metadata and controls

19 lines (13 loc) · 220 Bytes

Ignore unused variables

Back{: .button}

In clang and GCC

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

Cross compiler

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