mirror of
https://github.com/moparisthebest/curl
synced 2025-02-28 17:31:46 -05:00
CMake: suppress unused variable warnings
I missed these in commit d1b5cf830bfe169745721b21245d2217d2c2453e.
This commit is contained in:
parent
12d655d456
commit
97de97daef
@ -607,7 +607,9 @@ int fun2(int arg1, int arg2) {
|
|||||||
int
|
int
|
||||||
main() {
|
main() {
|
||||||
int res3 = gcc_vmacro3(1, 2, 3);
|
int res3 = gcc_vmacro3(1, 2, 3);
|
||||||
|
(void)res3;
|
||||||
int res2 = gcc_vmacro2(1, 2);
|
int res2 = gcc_vmacro2(1, 2);
|
||||||
|
(void)res2;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user