From 0d6b30776cf36d7eaabaaf1675e5697965ebe95b Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 19 May 2009 04:58:36 +0000 Subject: * struct.c (struct_ivar_get): new function to avoid repeated rb_intern() calls. * struct.c (rb_struct_iv_get): use struct_ivar_get() * struct.c (num_members): ditto. * struct.c (rb_struct_s_members): ditto. * class.c (rb_singleton_class): cache symbol to reduce calls to rb_intern(). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23488 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 8c1587535..a995d1a7d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +Tue May 19 13:54:15 2009 Yukihiro Matsumoto + + * struct.c (struct_ivar_get): new function to avoid repeated + rb_intern() calls. + + * struct.c (rb_struct_iv_get): use struct_ivar_get() + + * struct.c (num_members): ditto. + + * struct.c (rb_struct_s_members): ditto. + + * class.c (rb_singleton_class): cache symbol to reduce calls to + rb_intern(). + Tue May 19 07:52:05 2009 Tanaka Akira * test/test_time.rb: make tests timezone independent. -- cgit