'case' and 'default' are now keywords too, not just switch

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-11-19 21:40:38 +01:00
parent 06ba28f2a0
commit 63969180cf

View file

@ -23,7 +23,7 @@ static size_t num_keywords_qc = sizeof(keywords_qc) / sizeof(keywords_qc[0]);
/* For fte/gmgqcc */
static const char *keywords_fg[] = {
"var",
"switch",
"switch", "case", "default",
"struct", "union",
"break", "continue"
};