Unverified Commit 4a1d29cb authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #4375 from dearblue/forgotten-structs

Include `RFiber` and `RIstruct` as a part of `RVALUE`
parents ec41262e 0ebbc491
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
#include <mruby/array.h> #include <mruby/array.h>
#include <mruby/class.h> #include <mruby/class.h>
#include <mruby/data.h> #include <mruby/data.h>
#include <mruby/istruct.h>
#include <mruby/hash.h> #include <mruby/hash.h>
#include <mruby/proc.h> #include <mruby/proc.h>
#include <mruby/range.h> #include <mruby/range.h>
...@@ -109,8 +110,10 @@ typedef struct { ...@@ -109,8 +110,10 @@ typedef struct {
struct RHash hash; struct RHash hash;
struct RRange range; struct RRange range;
struct RData data; struct RData data;
struct RIstruct istruct;
struct RProc proc; struct RProc proc;
struct REnv env; struct REnv env;
struct RFiber fiber;
struct RException exc; struct RException exc;
struct RBreak brk; struct RBreak brk;
#ifdef MRB_WORD_BOXING #ifdef MRB_WORD_BOXING
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment