Merge pull request #4375 from dearblue/forgotten-structs

Include `RFiber` and `RIstruct` as a part of `RVALUE`
This commit is contained in:
Yukihiro "Matz" Matsumoto
2019-04-14 20:34:45 +09:00
committed by GitHub
+3
View File
@@ -10,6 +10,7 @@
#include <mruby/array.h>
#include <mruby/class.h>
#include <mruby/data.h>
#include <mruby/istruct.h>
#include <mruby/hash.h>
#include <mruby/proc.h>
#include <mruby/range.h>
@@ -109,8 +110,10 @@ typedef struct {
struct RHash hash;
struct RRange range;
struct RData data;
struct RIstruct istruct;
struct RProc proc;
struct REnv env;
struct RFiber fiber;
struct RException exc;
struct RBreak brk;
#ifdef MRB_WORD_BOXING