Skip to content

Commit

Permalink
Consistently use std::char_traits int_type-->char conversion intrinsics
Browse files Browse the repository at this point in the history
  • Loading branch information
pjkundert committed Oct 16, 2017
1 parent 0b803d0 commit a8cc7a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/json.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2674,7 +2674,7 @@ class lexer
{
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));
}

/*
Expand Down

0 comments on commit a8cc7a1

Please sign in to comment.