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)
"Could it be to stop the compiler from complaining about unused variables?"
yes