diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2019-08-18 23:25:40 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-08-18 23:25:40 +0900 |
| commit | 6f61b35bcf2e0686027c1f94c5b1ef5706ccea7d (patch) | |
| tree | b34cd6e85842f4fb96b4b596bf5a7c1e554bc0ca /src/codedump.c | |
| parent | 83dab1ee0d0d3aa76e44f7fbf14360ee501be151 (diff) | |
| parent | 279c21b816777b8b25457b27fd1994a9fe359a98 (diff) | |
| download | mruby-6f61b35bcf2e0686027c1f94c5b1ef5706ccea7d.tar.gz mruby-6f61b35bcf2e0686027c1f94c5b1ef5706ccea7d.zip | |
Merge pull request #4637 from dearblue/immutable-iseq
Prohibit changes to iseq in principle
Diffstat (limited to 'src/codedump.c')
| -rw-r--r-- | src/codedump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codedump.c b/src/codedump.c index 12d609075..b77a8adb4 100644 --- a/src/codedump.c +++ b/src/codedump.c @@ -69,7 +69,7 @@ static void codedump(mrb_state *mrb, mrb_irep *irep) { int ai; - mrb_code *pc, *pcend; + const mrb_code *pc, *pcend; mrb_code ins; const char *file = NULL, *next_file; |
