Revert "[clang-tidy] Cast integer to string"

This reverts commit da75c159ca.
This commit is contained in:
Paul Beckingham 2020-12-05 16:18:15 -05:00
parent da75c159ca
commit c02e369fbc

View file

@ -1420,7 +1420,7 @@ bool Lexer::readWord (
std::string::size_type eos = text.length ();
int quote = text[cursor++];
word = std::to_string(quote);
word = quote;
int c;
while ((c = text[cursor]))