diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-09-14 09:18:34 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-10-12 18:20:23 +0900 |
| commit | b9007244bdca6c0c4e9a80f183d3253d9d0a6b74 (patch) | |
| tree | 8bcd60ea1bdab09a5e5b53003de7d8f691dafd29 /mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h | |
| parent | 7932523052cd45747f9878cf0b1dc5a899191c79 (diff) | |
| download | mruby-b9007244bdca6c0c4e9a80f183d3253d9d0a6b74.tar.gz mruby-b9007244bdca6c0c4e9a80f183d3253d9d0a6b74.zip | |
Add `const` before `struct mrb_irep` in `mruby-bin-debugger` gem.
Diffstat (limited to 'mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h')
| -rw-r--r-- | mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h b/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h index 7c21de317..0c6505737 100644 --- a/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h +++ b/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h @@ -103,8 +103,8 @@ typedef struct mrb_debug_breakpoint { } mrb_debug_breakpoint; typedef struct mrb_debug_context { - struct mrb_irep *root_irep; - struct mrb_irep *irep; + const struct mrb_irep *root_irep; + const struct mrb_irep *irep; const mrb_code *pc; mrb_value *regs; |
