should define String#+ (non inlined); close #469

This commit is contained in:
Yukihiro Matsumoto
2012-09-13 22:28:04 +09:00
parent 8d97a8e069
commit f0f113ef0e
+4 -1
View File
@@ -379,7 +379,10 @@ mrb_str_plus(mrb_state *mrb, mrb_value a, mrb_value b)
static mrb_value
mrb_str_plus_m(mrb_state *mrb, mrb_value self)
{
return mrb_nil_value();
mrb_value str;
mrb_get_args(mrb, "S", &str);
return mrb_str_plus(mrb, self, str);
}
/*