mirror of
https://github.com/curl/curl.git
synced 2026-04-11 12:01:42 +08:00
cmake: silence potential unused var warnings in C++ test snippet
Follow-up to 6ad50dc285 #20687
Closes #20736
This commit is contained in:
parent
3cf86508fd
commit
4a43eba3b1
@ -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;
|
||||
}
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user