parse.y: use enum yytokentype

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61998 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2018-01-21 07:44:24 +00:00
parent 46e2fad66a
commit bb5772de26

View File

@ -6978,7 +6978,7 @@ parse_numeric(struct parser_params *p, int c)
}
tokfix();
if (is_float) {
int type = tFLOAT;
enum yytokentype type = tFLOAT;
VALUE v;
suffix = number_literal_suffix(seen_e ? NUM_SUFFIX_I : NUM_SUFFIX_ALL);