Commit a8cc7a1b authored by Perry Kundert's avatar Perry Kundert

Consistently use std::char_traits int_type-->char conversion intrinsics

parent 0b803d0a
......@@ -2674,7 +2674,7 @@ scan_number_done:
{
yytext.clear();
token_string.clear();
token_string.push_back(static_cast<char>(current));
token_string.push_back(std::char_traits<char>::to_char_type(current));
}
/*
......
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