aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorglass <glass@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-07-18 12:21:51 +0000
committerglass <glass@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-07-18 12:21:51 +0000
commit4595d9a3c98bfc759f4c3361adb20a9213ec610c (patch)
treee3211f1e05ce613e92d15cb9ae0fb585dd9047cf /ChangeLog
parente07e814ec3c732337153a71eb5718431d8e28a99 (diff)
downloadruby-4595d9a3c98bfc759f4c3361adb20a9213ec610c.tar.gz
* array.c (rb_ary_equal): compare RARRAY_PTR() for performance
improvement in case of that self and other are shared. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42043 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3ed5462fd3..33b8af84d5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Jul 18 21:15:41 2013 Masaki Matsushita <glass.saga@gmail.com>
+
+ * array.c (rb_ary_equal): compare RARRAY_PTR() for performance
+ improvement in case of that self and other are shared.
+
Thu Jul 18 20:44:51 2013 Masaki Matsushita <glass.saga@gmail.com>
* array.c (rb_ary_fill): use memfill().