summaryrefslogtreecommitdiffhomepage
path: root/src/class.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2020-08-08 15:13:39 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2020-10-12 16:21:34 +0900
commitcb89e1f0d9d9f05e53705d228b69decbc428a650 (patch)
tree348725848fbc3ef491392a90c55f47499392d4b2 /src/class.c
parent6bc5857125029aa519371b10625f7384767d7138 (diff)
downloadmruby-cb89e1f0d9d9f05e53705d228b69decbc428a650.tar.gz
mruby-cb89e1f0d9d9f05e53705d228b69decbc428a650.zip
Adjust PR #5060 to the latest `mruby3` branch.
Diffstat (limited to 'src/class.c')
-rw-r--r--src/class.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/class.c b/src/class.c
index 5ce32439a..0e443da90 100644
--- a/src/class.c
+++ b/src/class.c
@@ -2287,7 +2287,7 @@ static const mrb_code new_iseq[] = {
const mrb_sym new_syms[] = { MRB_SYM(allocate), MRB_SYM(initialize) };
static const mrb_irep new_irep = {
- 3, 6, MRB_IREP_STATIC,
+ 3, 6, 0, MRB_IREP_STATIC,
new_iseq, NULL, new_syms, NULL, NULL, NULL,
sizeof(new_iseq), 0, 2, 0, 0,
};