mirror of
https://github.com/curl/curl.git
synced 2026-04-14 18:11:40 +03: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
1 changed files with 3 additions and 0 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue