aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-18 02:10:37 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-07-18 02:10:37 +0000
commit0d0fc55122f7e64cf4d491c4a5f4bb941f29ec65 (patch)
treebc8d40e52e738bf4224a53b8f652edda1d38ba70 /ChangeLog
parentc317e978f79c920924f70eea8f66e69b40369fa5 (diff)
downloadruby-0d0fc55122f7e64cf4d491c4a5f4bb941f29ec65.tar.gz
enum.c: optimize any? object allocations for Array and Hash
* enum.c (enum_any): optimize object allocations for Array and Hash when `each` is not redefined, always false if empty and the case without a block. [fix GH-617] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46859 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ffd65a04e3..bbd7535bfc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri Jul 18 11:10:53 2014 Scott Francis <scott.francis@shopify.com>
+
+ * enum.c (enum_any): optimize object allocations for Array and
+ Hash when `each` is not redefined, always false if empty and the
+ case without a block. [fix GH-617]
+
Fri Jul 18 10:14:42 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* lib/fileutils.rb: added missing options of FileUtils.touch by @Domon.