-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* array.c (rb_ary_shift): shift/unshift performance boost patch,
based on the patch from Eric Mahurin <eric_mahurin at yahoo.com>. [ruby-core:05861] * array.c (rb_ary_unshift_m): ditto. * array.c (ary_make_shared): ditto. * array.c (RESIZE_CAPA): ditto. * array.c (rb_ary_free): new function to free memory. code moved from gc.c. * string.c (rb_str_free): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11038 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
Sep 26, 2006
1 parent
4f6f0b1
commit 1113d54
Showing
5 changed files
with
124 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,23 @@ Wed Sep 27 01:04:49 2006 Nobuyoshi Nakada <[email protected]> | |
|
||
* lib/mkmf.rb (have_type): simplified with typedef and sizeof. | ||
|
||
Wed Sep 27 00:08:12 2006 Yukihiro Matsumoto <[email protected]> | ||
|
||
* array.c (rb_ary_shift): shift/unshift performance boost patch, | ||
based on the patch from Eric Mahurin <eric_mahurin at yahoo.com>. | ||
[ruby-core:05861] | ||
|
||
* array.c (rb_ary_unshift_m): ditto. | ||
|
||
* array.c (ary_make_shared): ditto. | ||
|
||
* array.c (RESIZE_CAPA): ditto. | ||
|
||
* array.c (rb_ary_free): new function to free memory. code moved | ||
from gc.c. | ||
|
||
* string.c (rb_str_free): ditto. | ||
|
||
Tue Sep 26 23:57:03 2006 Nobuyoshi Nakada <[email protected]> | ||
|
||
* lib/optparse.rb (OptionParser#getopts): use strings as key. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters