From 18e8fd333c59975c62dabe61083a5656fc832cc1 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Mon, 3 Aug 2020 09:36:04 -0400 Subject: [PATCH] CppLexer: Actually give raw strings type RawString This fixes a regrettable mistake in 9ee1edae2aefcb95e. No behavior change. --- Libraries/LibGUI/CppLexer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibGUI/CppLexer.cpp b/Libraries/LibGUI/CppLexer.cpp index b7b89e4ec3..ec7a62d5fd 100644 --- a/Libraries/LibGUI/CppLexer.cpp +++ b/Libraries/LibGUI/CppLexer.cpp @@ -655,7 +655,7 @@ Vector CppLexer::lex() } } } - commit_token(CppToken::Type::DoubleQuotedString); + commit_token(CppToken::Type::RawString); continue; } if (size_t prefix = match_string_prefix('\''); prefix > 0) {