From 4a43eba3b1d979785a2b79eddcfc21d6eac133e5 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 26 Feb 2026 12:31:55 +0100 Subject: [PATCH] cmake: silence potential unused var warnings in C++ test snippet Follow-up to 6ad50dc2859e9ea764aafe51b34d430a663fb1d3 #20687 Closes #20736 --- tests/cmake/test.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/cmake/test.cpp b/tests/cmake/test.cpp index 71747949a0..f5fd4ecc2a 100644 --- a/tests/cmake/test.cpp +++ b/tests/cmake/test.cpp @@ -27,6 +27,9 @@ class CurlClass { public: void curl_multi_setopt(void *a, int b, long c) { + (void)a; + (void)b; + (void)c; std::cout << curl_version() << std::endl; } };