Controls the recognition of superfluous commas.
#pragma warn_extracomma on | off | reset
If you enable this pragma, the compiler issues a warning when it encounters an extra comma.
enum {l,m,n,o,}; // WARNING: When the warning is enabled, it will // generate :
This pragma corresponds to the Extra Commas setting in the Warnings panel. To check this setting, use __option (warn_extracomma), described in Checking Pragma Settings.By default, this pragma is disabled.