From 36e9276b1799b476f12db9b24d3073ceef3b7594 Mon Sep 17 00:00:00 2001 From: JKot Date: Mon, 10 Jan 2022 23:57:16 +0300 Subject: Fix hexadecimal escape is string literals (#2072) Co-authored-by: Theresa Foley --- source/compiler-core/slang-lexer.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'source') diff --git a/source/compiler-core/slang-lexer.cpp b/source/compiler-core/slang-lexer.cpp index a5eab67dd..d149a88bc 100644 --- a/source/compiler-core/slang-lexer.cpp +++ b/source/compiler-core/slang-lexer.cpp @@ -874,7 +874,6 @@ namespace Slang // Hexadecimal escape: any number of characters case 'x': { - cursor--; int value = 0; for(;;) { -- cgit v1.2.3