Use while statement instead of for statement

This commit is contained in:
Kouichi Nakanishi
2017-04-12 23:25:22 +09:00
parent 4fca570a74
commit d4205c9b20
+2 -1
View File
@@ -953,7 +953,8 @@ mrb_vm_const_get(mrb_state *mrb, mrb_sym sym)
if (c->iv && iv_get(mrb, c->iv, sym, &v)) {
return v;
}
for (c2 = c; c2 && c2->tt == MRB_TT_SCLASS;) {
c2 = c;
while (c2 && c2->tt == MRB_TT_SCLASS) {
mrb_value klass;
klass = mrb_obj_iv_get(mrb, (struct RObject *)c2,
mrb_intern_lit(mrb, "__attached__"));