mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
merge revision(s) e5dd40b1f3
: [Backport #18065]
Stop force-recycling evacuated array [Bug #18065] --- hash.c | 1 - 1 file changed, 1 deletion(-)
This commit is contained in:
parent
80c180df76
commit
d6b8b37a26
2 changed files with 2 additions and 3 deletions
1
hash.c
1
hash.c
|
@ -3306,7 +3306,6 @@ rb_hash_transform_keys_bang(int argc, VALUE *argv, VALUE hash)
|
|||
rb_hash_aset(new_keys, new_key, Qnil);
|
||||
}
|
||||
rb_ary_clear(pairs);
|
||||
rb_gc_force_recycle(pairs);
|
||||
rb_hash_clear(new_keys);
|
||||
rb_gc_force_recycle(new_keys);
|
||||
}
|
||||
|
|
|
@ -12,11 +12,11 @@
|
|||
# define RUBY_VERSION_MINOR RUBY_API_VERSION_MINOR
|
||||
#define RUBY_VERSION_TEENY 3
|
||||
#define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR
|
||||
#define RUBY_PATCHLEVEL 121
|
||||
#define RUBY_PATCHLEVEL 122
|
||||
|
||||
#define RUBY_RELEASE_YEAR 2021
|
||||
#define RUBY_RELEASE_MONTH 8
|
||||
#define RUBY_RELEASE_DAY 4
|
||||
#define RUBY_RELEASE_DAY 8
|
||||
|
||||
#include "ruby/version.h"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue