In C/C++, I used to explicitly cast to `void` to i...
# announcements
c
In C/C++, I used to explicitly cast to
void
to indicate I was intentionally ignoring the returned value:
(void) foo();
The compiler doesn’t care but human readers might want to know it’s intentional and not an oversight or me just ignoring an error