summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-04-28 00:32:34 +0900
committerYukihiro Matsumoto <[email protected]>2012-04-28 00:32:34 +0900
commit32db0e5d8ca2aa2d8e7ce6577f9e0c5cee76ba0d (patch)
tree38ae4bc1ebcaee6e4b9656a0c77e11561df140d3 /include
parent9e45eb185b50d7f45096b4edb0ec7ae49b6886b2 (diff)
downloadmruby-32db0e5d8ca2aa2d8e7ce6577f9e0c5cee76ba0d.tar.gz
mruby-32db0e5d8ca2aa2d8e7ce6577f9e0c5cee76ba0d.zip
struct RString member should not be mrb_value
Diffstat (limited to 'include')
-rw-r--r--include/mruby/string.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby/string.h b/include/mruby/string.h
index ea9ca71ec..d35a5fe53 100644
--- a/include/mruby/string.h
+++ b/include/mruby/string.h
@@ -29,7 +29,7 @@ struct RString {
long len;
union {
size_t capa;
- mrb_value shared;
+ struct RString *shared;
} aux;
char *buf;
};