Controls the recognition of unreferenced arguments.
#pragma warn_unusedarg on | off | reset
If you enable this pragma, the compiler issues a warning when it encounters an argument you declare but do not use. To suppress this warning in C++ source code, leave an argument identifier out of the function parameter list.
This pragma corresponds to the Unused Arguments setting in the Language panel. To check this setting, use __option (warn_unusedarg), described in Checking Pragma Settings. By default, this pragma is disabled.