summaryrefslogtreecommitdiffhomepage
path: root/src/re.h
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-05-07 17:31:07 +0900
committerYukihiro Matsumoto <[email protected]>2012-05-07 17:31:07 +0900
commitd0e63a3a03ddbe3fd03cde3817c63c49723f2b69 (patch)
tree44010692e10eb6c7c71c5de233bd35055b7b63db /src/re.h
parentc51c8dd1199af4815fadff162c0f46096c6c5795 (diff)
downloadmruby-d0e63a3a03ddbe3fd03cde3817c63c49723f2b69.tar.gz
mruby-d0e63a3a03ddbe3fd03cde3817c63c49723f2b69.zip
RMatch.src should not be mrb_value
Diffstat (limited to 'src/re.h')
-rw-r--r--src/re.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/re.h b/src/re.h
index 03db1f271..14cf7d81b 100644
--- a/src/re.h
+++ b/src/re.h
@@ -37,7 +37,7 @@ struct rmatch {
//};
struct RMatch {
MRUBY_OBJECT_HEADER;
- mrb_value str;
+ struct RString *str;
struct rmatch *rmatch;
struct RRegexp *regexp;
};