From d1b5cf830bfe169745721b21245d2217d2c2453e Mon Sep 17 00:00:00 2001 From: Marcel Raad Date: Fri, 5 Apr 2019 19:57:29 +0200 Subject: build: fix Codacy/CppCheck warnings - remove unused variables - declare conditionally used variables conditionally - suppress unused variable warnings in the CMake tests - remove dead variable stores - consistently use WIN32 macro to detect Windows Closes https://github.com/curl/curl/pull/3739 --- CMake/CurlTests.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'CMake') diff --git a/CMake/CurlTests.c b/CMake/CurlTests.c index 0756b2a31..848e0d5d7 100644 --- a/CMake/CurlTests.c +++ b/CMake/CurlTests.c @@ -240,6 +240,7 @@ int main() #ifndef inet_ntoa_r func_type func; func = (func_type)inet_ntoa_r; + (void)func; #endif return 0; } @@ -255,6 +256,7 @@ int main() #ifndef inet_ntoa_r func_type func; func = (func_type)&inet_ntoa_r; + (void)func; #endif return 0; } @@ -582,7 +584,9 @@ int fun2(int arg1, int arg2) { int main() { int res3 = c99_vmacro3(1, 2, 3); + (void)res3; int res2 = c99_vmacro2(1, 2); + (void)res2; return 0; } #endif -- cgit v1.2.3