diff options
author | yui-knk <[email protected]> | 2024-04-01 14:33:17 +0900 |
---|---|---|
committer | Yuichiro Kaneko <[email protected]> | 2024-04-02 19:37:27 +0900 |
commit | e816ab0b0ce97a49cc1a642c3fb6f78c9e838f97 (patch) | |
tree | b2ef3903699b63d34fbc74d20216c658b4bf2875 /rubyparser.h | |
parent | e651395210b39123b6c404e455d9ff1f95d919bb (diff) |
Remove `rb_imemo_tmpbuf_t` from parser
No parser semantic value types are `VALUE` then no need to
use imemo for managing semantic value stack anymore.
Diffstat (limited to 'rubyparser.h')
-rw-r--r-- | rubyparser.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/rubyparser.h b/rubyparser.h index 28e675c39f..138de47f0d 100644 --- a/rubyparser.h +++ b/rubyparser.h @@ -1241,7 +1241,6 @@ typedef struct rb_parser_config_struct { void *(*xmalloc_mul_add)(size_t x, size_t y, size_t z); /* imemo */ - rb_imemo_tmpbuf_t *(*tmpbuf_parser_heap)(void *buf, rb_imemo_tmpbuf_t *old_heap, size_t cnt); rb_ast_t *(*ast_new)(VALUE nb); // VALUE rb_suppress_tracing(VALUE (*func)(VALUE), VALUE arg); |