The classic 'lint' program used to be very voluble about functions that returned a value that was ignored. The trouble was, many of those warnings were unwanted - leading to excessive noise in the lint output (it was picking up bits of fluff that you wanted it to ignore). That's probably why GCC doesn't have a standard warning for it.
The other issue - the flip side - is "how do you suppress the warning when you know you are ignoring the result but really don't care". The classic scenario for that is:
if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
signal(SIGHUP, sighandler);
You care about the first result from signal(); you know that the second will be SIG_IGN (since you just set it to that). To get away from the warnings, I sometimes use some variant on:
if ((old = signal(SIGHUP, SIG_IGN)) != SIG_IGN)
old = signal(SIGHUP, sighandler);
This assigns to old both times. You can follow that with 'assert(old == SIG_IGN)'.
printffor example. – Alok Jan 11 '10 at 15:49couts as well. – Bill Jan 11 '10 at 17:43T& operator=(T rhs);to force you to catch the result ;) – Matthieu M. Jan 11 '10 at 20:11(void) function_returning_a_val();. When reading the code, this also makes it clearer that you are intentionally ignoring the return value. – bta Jan 15 '10 at 0:01