diff options
author | 卜部昌平 <[email protected]> | 2021-02-04 12:34:19 +0900 |
---|---|---|
committer | 卜部昌平 <[email protected]> | 2021-02-04 12:34:19 +0900 |
commit | b0d6563f131d98f72c508199e5e3bc8da80b90ab (patch) | |
tree | 5349d4f530470f2eee662230fab92160713645ea /include/ruby | |
parent | 33d6e92e0c6eaf1308ce7108e653c53bb5fb106c (diff) |
rb_clear_method_cache_by_class: no longer exist
It is questionable whether we can change a public API but this function
does not exist today. No way.
Diffstat (limited to 'include/ruby')
-rw-r--r-- | include/ruby/internal/intern/vm.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/ruby/internal/intern/vm.h b/include/ruby/internal/intern/vm.h index 706f160ad8..298a6ad2bb 100644 --- a/include/ruby/internal/intern/vm.h +++ b/include/ruby/internal/intern/vm.h @@ -52,7 +52,6 @@ void rb_define_alloc_func(VALUE, rb_alloc_func_t); void rb_undef_alloc_func(VALUE); rb_alloc_func_t rb_get_alloc_func(VALUE); void rb_clear_constant_cache(void); -void rb_clear_method_cache_by_class(VALUE); void rb_alias(VALUE, ID, ID); void rb_attr(VALUE,ID,int,int,int); int rb_method_boundp(VALUE, ID, int); |