Define ECL_UNUSED

Define Documentation

ECL_UNUSED

Attribute unused.

Indicates a variable, type, function is unused to avoid warning checks.

// for types
typename this_foo ECL_UNUSED other_foo;
// in method arguments
int foo (ECL_UNUSED int bar) {
  return 0;
}