cmake: silence potential unused var warnings in C++ test snippet

Follow-up to 6ad50dc285 #20687

Closes #20736
This commit is contained in:
Viktor Szakats 2026-02-26 12:31:55 +01:00
parent 3cf86508fd
commit 4a43eba3b1
No known key found for this signature in database

View File

@ -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;
}
};