summaryrefslogtreecommitdiffhomepage
path: root/src/re.h
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-05-07 17:20:58 +0900
committerYukihiro Matsumoto <[email protected]>2012-05-07 17:20:58 +0900
commitc51c8dd1199af4815fadff162c0f46096c6c5795 (patch)
treecd8557d461638a4439140868878d2a376a77cd5f /src/re.h
parentc401b753eb9d333a3fa9ba855b8c4f836d098341 (diff)
downloadmruby-c51c8dd1199af4815fadff162c0f46096c6c5795.tar.gz
mruby-c51c8dd1199af4815fadff162c0f46096c6c5795.zip
RMatch.regexp 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 686120569..03db1f271 100644
--- a/src/re.h
+++ b/src/re.h
@@ -39,7 +39,7 @@ struct RMatch {
MRUBY_OBJECT_HEADER;
mrb_value str;
struct rmatch *rmatch;
- mrb_value regexp; /* RRegexp */
+ struct RRegexp *regexp;
};
struct RRegexp {