summaryrefslogtreecommitdiff
path: root/ruby.h
diff options
context:
space:
mode:
authormichal <michal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-09-09 10:26:02 +0000
committermichal <michal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-09-09 10:26:02 +0000
commit6f92767afcacbf2c82d1116329360aee7d5b522b (patch)
tree05add292d7df7b5c48edfc772500a430879bc0df /ruby.h
parent23fb79a290a4d7e2232546db2fc25663d0220de5 (diff)
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
Diffstat (limited to 'ruby.h')
-rw-r--r--ruby.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ruby.h b/ruby.h
index 8b5dc179fe..ed18bf0c9e 100644
--- a/ruby.h
+++ b/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;