summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 83d25f8)
raw | patch | inline | side by side (parent: 83d25f8)
author | Sebastian Harl <sh@tokkee.org> | |
Fri, 17 Oct 2014 08:35:07 +0000 (10:35 +0200) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Fri, 17 Oct 2014 08:35:07 +0000 (10:35 +0200) |
It doesn't make a difference so far, but will avoid problems in the future.
src/include/frontend/parser.h | patch | blob | history |
index d2dfb01f723985d54cf03866740db3479bbec448..d78ab20bade0e726e769fc595ec9c7bc0599306d 100644 (file)
/* parser modes */
enum {
SDB_PARSE_DEFAULT = 0,
- SDB_PARSE_COND,
- SDB_PARSE_EXPR,
+ SDB_PARSE_COND = 1 << 1,
+ SDB_PARSE_EXPR = 1 << 2,
};
/* YY_EXTRA data */