Merge pull request #2573 from cubicdaiya/issues/remove_unused_macro

Remove unused macro.
This commit is contained in:
Yukihiro "Matz" Matsumoto
2014-08-29 11:56:05 +09:00
-3
View File
@@ -2059,9 +2059,6 @@ mrb_cstr_to_dbl(mrb_state *mrb, const char * p, mrb_bool badcheck)
double d;
enum {max_width = 20};
#define OutOfRange() (((w = end - p) > max_width) ? \
(w = max_width, ellipsis = "...") : \
(w = (int)(end - p), ellipsis = ""))
if (!p) return 0.0;
while (ISSPACE(*p)) p++;