diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-09-25 02:39:59 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-09-25 02:39:59 +0900 |
| commit | 9194047791bede575a184620ed9a96edd26b24ac (patch) | |
| tree | 3ab0e9b8bebf551af889676e8b2d7e1da5258837 /include/mruby.h | |
| parent | fe1f121640fbe94ad2e7fabf0b9cb8fdd4ae0e02 (diff) | |
| download | mruby-9194047791bede575a184620ed9a96edd26b24ac.tar.gz mruby-9194047791bede575a184620ed9a96edd26b24ac.zip | |
change type of mrb->c->status from uint8_t to enum mrb_fiber_state; #1511
Diffstat (limited to 'include/mruby.h')
| -rw-r--r-- | include/mruby.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby.h b/include/mruby.h index 0541bc709..b3582541a 100644 --- a/include/mruby.h +++ b/include/mruby.h @@ -84,7 +84,7 @@ struct mrb_context { struct RProc **ensure; /* ensure handler stack */ int esize; - uint8_t status; + enum mrb_fiber_state status; struct RFiber *fib; }; |
