"comma at end of enumerator list" error due to macros in libqof

Derek Atkins warlord at MIT.EDU
Tue Jun 7 13:16:09 EDT 2011


Jim Paris <jim at jtan.com> writes:

> DEFINE_ENUM can just add a dummy element to the end which will follow
> the trailing comma:
>
> #define DEFINE_ENUM(name, list)             \
>        typedef enum {                       \
>            list(ENUM_BODY)                  \
> 	   __dummy__##name                  \
>        } name;

This would cause problems elsewhere, because any switch(name) { }
construct would need to be modified to either have a default or
__dummy__name case statement!   So you would break existing code.

> -jim

-derek
-- 
       Derek Atkins, SB '93 MIT EE, SM '95 MIT Media Laboratory
       Member, MIT Student Information Processing Board  (SIPB)
       URL: http://web.mit.edu/warlord/    PP-ASEL-IA     N1NWH
       warlord at MIT.EDU                        PGP key available


More information about the gnucash-devel mailing list