aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-06-14 01:55:07 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-06-14 01:55:07 +0000
commit4802149e44ac616ac50cd7a4315b5933f4a89b19 (patch)
tree03b13129020b16a9ad9e172dbcae1e5f6c9fa3ab /ChangeLog
parent9d6b7aede9c20ff46290d9d08027dc8a025f0e78 (diff)
downloadruby-4802149e44ac616ac50cd7a4315b5933f4a89b19.tar.gz
array.c: non-recursive rpermute0
* array.c (rpermute0): remove recursion, by looping with indexes stored in `p`. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46427 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4a6c9454c3..251bd357a0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,7 @@
-Sat Jun 14 10:53:28 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
+Sat Jun 14 10:53:49 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * array.c (rpermute0): remove recursion, by looping with indexes
+ stored in `p`.
* array.c (permute0): remove recursion, by looping with indexes
stored in `p`. [ruby-core:63103] [Bug #9932]