Commit bf0b591b authored by KOBAYASHI Shuji's avatar KOBAYASHI Shuji

Remove unused enum in `mrb_cstr_to_dbl`

parent 5812d05b
...@@ -2499,8 +2499,6 @@ mrb_cstr_to_dbl(mrb_state *mrb, const char * p, mrb_bool badcheck) ...@@ -2499,8 +2499,6 @@ mrb_cstr_to_dbl(mrb_state *mrb, const char * p, mrb_bool badcheck)
char buf[DBL_DIG * 4 + 10]; char buf[DBL_DIG * 4 + 10];
double d; double d;
enum {max_width = 20};
if (!p) return 0.0; if (!p) return 0.0;
while (ISSPACE(*p)) p++; while (ISSPACE(*p)) p++;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment