From: Marcel Raad Date: Sat, 11 May 2019 12:17:17 +0000 (+0200) Subject: CMake: suppress unused variable warnings X-Git-Tag: curl-7_65_0~66 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=97de97daefc2ed084c91eff34af2426f2e55e134;p=thirdparty%2Fcurl.git CMake: suppress unused variable warnings I missed these in commit d1b5cf830bfe169745721b21245d2217d2c2453e. --- diff --git a/CMake/CurlTests.c b/CMake/CurlTests.c index 848e0d5d79..f7290c3981 100644 --- a/CMake/CurlTests.c +++ b/CMake/CurlTests.c @@ -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