ソースコードを読んでいて、これが出てきました。
struct Cookie *
Curl_cookie_add(struct SessionHandle *data, /* rest of params were here */)
{
/* unrelated things were here */
#ifdef CURL_DISABLE_VERBOSE_STRINGS
(void)data;
#endif
/* rest of function goes here */
}
ご覧のとおり、void キャスト ポインターは変数に割り当てられていません。これは何を目的としているのだろうと思いました。