O que o vazamento de vazios faz?

Eu estava lendo algum código-fonte, e isso surgiu;

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 */
}

Como você pode ver, anular o ponteiro fundido, nem sequer é atribuído a uma variável. Eu queria saber qual é o propósito disso.

questionAnswers(2)

yourAnswerToTheQuestion