diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-06-05 09:53:48 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-10-12 16:21:04 +0900 |
| commit | 7ab7cadbbb012d9431928d9cfae09451eab86613 (patch) | |
| tree | 2122fa4ecedf4a7106d2832e8050c9560280ccdc /include | |
| parent | 2c1d209fd5514979d03382efd88189460c1de119 (diff) | |
| download | mruby-7ab7cadbbb012d9431928d9cfae09451eab86613.tar.gz mruby-7ab7cadbbb012d9431928d9cfae09451eab86613.zip | |
Stringify non C identifier symbols to stop macro errors by old gcc.
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby/presym.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby/presym.h b/include/mruby/presym.h index 33e51fe18..3cc12e8fb 100644 --- a/include/mruby/presym.h +++ b/include/mruby/presym.h @@ -9,7 +9,7 @@ #undef MRB_PRESYM_MAX #define MRB_PRESYM_CSYM(sym, num) MRB_PRESYM__##sym = (num<<1), -#define MRB_PRESYM_QSYM(src, sym, num) MRB_PRESYM_q_##sym = (num<<1), +#define MRB_PRESYM_QSYM(str, sym, num) MRB_PRESYM_q_##sym = (num<<1), #define MRB_PRESYM_SYM(sym, num) enum mruby_presym { |
