summaryrefslogtreecommitdiff
path: root/struct.c
diff options
context:
space:
mode:
authorglass <glass@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-01 04:26:25 +0000
committerglass <glass@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-01 04:26:25 +0000
commit8875e0ca4affbe1c24ed7c13728124e58881061e (patch)
tree088d2d6dc717d99df6fb5eb9a65d41a021464f73 /struct.c
parentcb0f3183cb49a2b5c6df309676d7e558ab074c2c (diff)
use rb_hash_new_with_size()
* hash.c: use rb_hash_new_with_size(). * marshal.c: ditto * struct.c: ditto * vm_args.c: ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60085 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'struct.c')
-rw-r--r--struct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/struct.c b/struct.c
index f1f361f953..b36dd37e4b 100644
--- a/struct.c
+++ b/struct.c
@@ -794,7 +794,7 @@ rb_struct_to_a(VALUE s)
static VALUE
rb_struct_to_h(VALUE s)
{
- VALUE h = rb_hash_new();
+ VALUE h = rb_hash_new_with_size(RSTRUCT_LEN(s));
VALUE members = rb_struct_members(s);
long i;