mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
capa field in RString, and RArray is now LONG (ruby-lang:458)
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2828 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
23fb79a290
commit
6f92767afc
1 changed files with 2 additions and 2 deletions
4
ruby.h
4
ruby.h
|
@ -316,7 +316,7 @@ struct RString {
|
|||
long len;
|
||||
char *ptr;
|
||||
union {
|
||||
int capa;
|
||||
long capa;
|
||||
VALUE shared;
|
||||
} aux;
|
||||
};
|
||||
|
@ -325,7 +325,7 @@ struct RArray {
|
|||
struct RBasic basic;
|
||||
long len;
|
||||
union {
|
||||
int capa;
|
||||
long capa;
|
||||
VALUE shared;
|
||||
} aux;
|
||||
VALUE *ptr;
|
||||
|
|
Loading…
Add table
Reference in a new issue