We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6840de7 commit 8f976f3Copy full SHA for 8f976f3
tests/basic.c
@@ -212,14 +212,15 @@ int base_switch_return_10(int switch_value)
212
RETURN(i);
213
}
214
215
-
+#define MAYBE_UNUSED(arg) (void)(arg)
216
217
int main(int argc, char *argv[])
218
{
219
- (void)argc;
220
- (void)argv;
+ MAYBE_UNUSED(argc);
+ MAYBE_UNUSED(argv);
221
222
int result = 0;
223
+ MAYBE_UNUSED(result);
224
225
/*
226
* Base check
0 commit comments