diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-04-19 14:38:14 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-04-19 14:38:14 +0900 |
| commit | 426f80b191a0130e94a1daebf204ece0433e9d78 (patch) | |
| tree | 82d783c32ed71e703ca715e24ab3dc1af65a9778 /include/mruby.h | |
| parent | e4624757524349a3cc6130350aebeefccc5e5816 (diff) | |
| parent | 29e90d028705c203239e5f9afc722507117864c1 (diff) | |
| download | mruby-426f80b191a0130e94a1daebf204ece0433e9d78.tar.gz mruby-426f80b191a0130e94a1daebf204ece0433e9d78.zip | |
Merge pull request #2080 from crimsonwoods/replace_disordered_callinfo_variables
Sort out the variables which belongs to 'mrb_callinfo'
Diffstat (limited to 'include/mruby.h')
| -rw-r--r-- | include/mruby.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/mruby.h b/include/mruby.h index af1fc9894..b74b1e466 100644 --- a/include/mruby.h +++ b/include/mruby.h @@ -57,14 +57,14 @@ typedef struct { struct RProc *proc; mrb_value *stackent; int nregs; - int argc; + int ridx; + int eidx; + struct REnv *env; mrb_code *pc; /* return address */ mrb_code *err; /* error position */ + int argc; int acc; struct RClass *target_class; - int ridx; - int eidx; - struct REnv *env; } mrb_callinfo; enum mrb_fiber_state { |
