Bug 397773 - mozilla-central has pedantic errors because of extra commas, r=mrbkap+brendan a=brendan

This commit is contained in:
benjamin@smedbergs.us 2007-10-05 06:58:51 -07:00
Родитель a8c58f1dc5
Коммит af426efb3e
2 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -68,6 +68,7 @@ typedef enum REOp {
#define REOP_DEF(opcode, name) opcode,
#include "jsreops.tbl"
#undef REOP_DEF
REOP_LIMIT /* META: no operator >= to this */
} REOp;
#define REOP_IS_SIMPLE(op) ((op) <= REOP_NCLASS)

Просмотреть файл

@ -143,5 +143,3 @@ REOP_DEF(REOP_ENDALT, "endalt")
REOP_DEF(REOP_CONCAT, "concat")
/* end of expression */
REOP_DEF(REOP_END, "end")
/* META: no operator >= to this */
REOP_DEF(REOP_LIMIT,"limit")