CMake: suppress unused variable warnings

I missed these in commit d1b5cf830b.
This commit is contained in:
Marcel Raad 2019-05-11 14:17:17 +02:00
parent 12d655d456
commit 97de97daef
No known key found for this signature in database
GPG Key ID: FE4D8BC5EE1701DD

View File

@ -607,7 +607,9 @@ int fun2(int arg1, int arg2) {
int
main() {
int res3 = gcc_vmacro3(1, 2, 3);
(void)res3;
int res2 = gcc_vmacro2(1, 2);
(void)res2;
return 0;
}
#endif