Removed unnecessary const macro - const keyword is already a dependency

This commit is contained in:
Felix Jones
2016-12-08 12:38:00 +00:00
parent b84e005fc3
commit 2827655b9c
-8
View File
@@ -2770,14 +2770,6 @@ mrb_init_string(mrb_state *mrb)
#include <ctype.h>
#include <errno.h>
#ifndef __STDC__
# ifdef __GNUC__
# define const __const__
# elif !defined(_MSC_VER)
# define const
# endif
#endif
static const int maxExponent = 511; /* Largest possible base 10 exponent. Any
* exponent larger than this will already
* produce underflow or overflow, so there's