Got rid of warnings "suggest braces around empty body in an ‘else’ statement"

in Parser/pgen.c.
This commit is contained in:
Serhiy Storchaka 2015-04-03 15:24:33 +03:00
parent 4deb950e2b
commit a8cd4d482f

View file

@ -136,11 +136,12 @@ addnfa(nfagrammar *gr, char *name)
static char REQNFMT[] = "metacompile: less than %d children\n";
#define REQN(i, count) \
#define REQN(i, count) do { \
if (i < count) { \
fprintf(stderr, REQNFMT, count); \
Py_FatalError("REQN"); \
} else
} \
} while (0)
#else
#define REQN(i, count) /* empty */