use C style comments instead of C++ style comments

This commit is contained in:
Tatsuhiko Kubo
2014-07-13 00:24:45 +09:00
parent ee9d409eed
commit 5b5313ec97
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1799,7 +1799,7 @@ mrb_str_split_m(mrb_state *mrb, mrb_value str)
}
}
else if (split_type == string) {
char *ptr = RSTRING_PTR(str); // s->as.ary
char *ptr = RSTRING_PTR(str); /* s->as.ary */
char *temp = ptr;
char *eptr = RSTRING_END(str);
mrb_int slen = RSTRING_LEN(spat);