aboutsummaryrefslogtreecommitdiffstats
path: root/ruby.h
diff options
context:
space:
mode:
Diffstat (limited to 'ruby.h')
-rw-r--r--ruby.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ruby.h b/ruby.h
index e5b4a69697..f7ce7a48f3 100644
--- a/ruby.h
+++ b/ruby.h
@@ -378,12 +378,12 @@ struct RString {
struct RBasic basic;
union {
struct {
- long len;
- char *ptr;
- union {
- long capa;
- VALUE shared;
- } aux;
+ long len;
+ char *ptr;
+ union {
+ long capa;
+ VALUE shared;
+ } aux;
} heap;
char ary[RSTRING_EMBED_LEN_MAX];
} as;