Answers
如果可能,请务必用正常方法消除 warning,真的多余就去掉吧
方法一:
void foo(int a) {
(void)a;
// ...
}
方法二:
#ifdef __GNUC__
# define UNUSED(x) UNUSED_ ## x __attribute__((__unused__))
#else
# define UNUSED(x) UNUSED_ ## x
#endif
void foo(int UNUSED(a)) {
// ...
}
zero赤月
answered 10 years, 1 month ago