Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7829ec0b authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 4072

* changes:
  Make #define work again. (Had accidentally omitted the keyword.)
parents 01fa7045 2ccc40d0
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -1498,7 +1498,10 @@ class Compiler : public ErrorSink {
            put("break", TOK_BREAK);
            put("return", TOK_RETURN);
            put("for", TOK_FOR);
            // TODO: remove these preprocessor-specific keywords. You should
            // be able to have symbols named pragma or define.
            put("pragma", TOK_PRAGMA);
            put("define", TOK_DEFINE);
        }

        ~KeywordTable() {