diff options
author | Takashi Kokubun <[email protected]> | 2022-10-18 09:07:11 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2022-10-18 09:07:11 -0700 |
commit | e7166c9bb78e20531a9cbb372e460ecd12603b5e (patch) | |
tree | d22156bfa6623b1a4d74d57efcf2ff6f1cc4799a /iseq.h | |
parent | d67b6310d3e529b4d4a56ba8d850aa5bccfb83b5 (diff) |
Allow passing a Rust closure to rb_iseq_callback (#6575)
Notes
Notes:
Merged-By: k0kubun <[email protected]>
Diffstat (limited to 'iseq.h')
-rw-r--r-- | iseq.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,7 +31,7 @@ RUBY_EXTERN const int ruby_api_version[]; typedef struct rb_iseq_struct rb_iseq_t; #define rb_iseq_t rb_iseq_t #endif -typedef void (*rb_iseq_callback)(const rb_iseq_t *); +typedef void (*rb_iseq_callback)(const rb_iseq_t *, void *); extern const ID rb_iseq_shared_exc_local_tbl[]; |