diff options
author | Jean Boussier <[email protected]> | 2024-11-23 09:51:57 +0100 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2024-11-26 15:11:05 +0900 |
commit | 6805e889354aa0eb6901c2a24c107fded436b4cc () | |
tree | 2789fc6d610ac94780d3848746844954de4bec07 /ext/json/parser/extconf.rb | |
parent | ee0de3fd4e02f95f42fd3fe9cb18bcfe3e7e2bf1 (diff) |
[ruby/json] Stop using `rb_gc_mark_locations`
It's using `rb_gc_mark_maybe` under the hood, which isn't what we need. https://.com/ruby/json/commit/e10d0bffcd
-rw-r--r-- | ext/json/parser/extconf.rb | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -3,7 +3,6 @@ require 'mkmf' have_func("rb_enc_interned_str", "ruby.h") # RUBY_VERSION >= 3.0 have_func("rb_hash_new_capa", "ruby.h") # RUBY_VERSION >= 3.2 -have_func("rb_gc_mark_locations", "ruby.h") # Missing on TruffleRuby have_func("rb_hash_bulk_insert", "ruby.h") # Missing on TruffleRuby have_func("rb_category_warn", "ruby.h") # Missing on TruffleRuby |