I am dealing with other people's code which often has lines like this...
aRES someFunction(void* aHandle)
{
(void)aHandle;
return RES_OK;
}
What does the line:
(void)aHandle;
do? Comments suggest it suppresses an error - does/could it?