jsmn.h:28:22: warning: commas at the end of enumerator lists are a C99-specific feature [-Wc99-extensions]

WITH:

-std=c89 -Wall -pedantic -Wno-declaration-after-statement
master
Wizard Tai 10 years ago
parent 76cd398859
commit cf39341a39

@ -25,7 +25,7 @@ typedef enum {
/* Invalid character inside JSON string */ /* Invalid character inside JSON string */
JSMN_ERROR_INVAL = -2, JSMN_ERROR_INVAL = -2,
/* The string is not a full JSON packet, more bytes expected */ /* The string is not a full JSON packet, more bytes expected */
JSMN_ERROR_PART = -3, JSMN_ERROR_PART = -3
} jsmnerr_t; } jsmnerr_t;
/** /**

Loading…
Cancel
Save