mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Moved rb_deprecate_constant declaration [Feature #18051]
This commit is contained in:
parent
5d99800d01
commit
d9f084ed14
Notes:
git
2021-08-24 10:38:06 +09:00
2 changed files with 1 additions and 1 deletions
|
@ -51,6 +51,7 @@ void rb_define_hooked_variable(const char*,VALUE*,rb_gvar_getter_t*,rb_gvar_sett
|
|||
void rb_define_readonly_variable(const char*,const VALUE*);
|
||||
void rb_define_const(VALUE,const char*,VALUE);
|
||||
void rb_define_global_const(const char*,VALUE);
|
||||
void rb_deprecate_constant(VALUE mod, const char *name);
|
||||
|
||||
VALUE rb_gv_set(const char*, VALUE);
|
||||
VALUE rb_gv_get(const char*);
|
||||
|
|
|
@ -44,7 +44,6 @@ void rb_mv_generic_ivar(VALUE src, VALUE dst);
|
|||
VALUE rb_const_missing(VALUE klass, VALUE name);
|
||||
int rb_class_ivar_set(VALUE klass, ID vid, VALUE value);
|
||||
void rb_iv_tbl_copy(VALUE dst, VALUE src);
|
||||
void rb_deprecate_constant(VALUE mod, const char *name);
|
||||
RUBY_SYMBOL_EXPORT_END
|
||||
|
||||
MJIT_SYMBOL_EXPORT_BEGIN
|
||||
|
|
Loading…
Add table
Reference in a new issue