From c02e369fbc4916ff1df40fa3947d77fc281c20c6 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 5 Dec 2020 16:18:15 -0500 Subject: [PATCH] Revert "[clang-tidy] Cast integer to string" This reverts commit da75c159ca4dfe6180a6bc2c6dc3fbe63b2008a2. --- src/Lexer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Lexer.cpp b/src/Lexer.cpp index 29a541a9b..a47794477 100644 --- a/src/Lexer.cpp +++ b/src/Lexer.cpp @@ -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]))