I\'m looking at a piece of C++ code, and the first line in the main function caught my attention:
int main(int argc, const char* argv[]) { (void)argc; (void)
Yes, it's exactly to tell the compiler not to complain about unused variables.