Skip to content

Commit

Permalink
Should not define to Struct class
Browse files Browse the repository at this point in the history
  • Loading branch information
ksss committed Jul 22, 2016
1 parent 97283fa commit 1a8074a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mrbgems/mruby-struct/src/struct.c
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ mrb_struct_s_def(mrb_state *mrb, mrb_value klass)
}
st = make_struct(mrb, name, rest, struct_class(mrb));
if (!mrb_nil_p(b)) {
mrb_yield_with_class(mrb, b, 1, &st, st, mrb_class_ptr(klass));
mrb_yield_with_class(mrb, b, 1, &st, st, mrb_class_ptr(st));
}

return st;
Expand Down

0 comments on commit 1a8074a

Please sign in to comment.