Controls the recognition of declarations without variables.
#pragma warn_emptydecl on | off | reset
If you enable this pragma, the compiler displays a warning message when it encounters a declaration with no variables.
#pragma warn_emptydecl on int ; /* WARNING: empty variable declaration. */ int i; /* OK */ long j;; /* WARNING */ long j; /* OK */
#pragma warn_emptydecl on extern "C" { }; /* WARNING */