From 91525dcc0f5599fd82b8d592d899494f0bd4e510 Mon Sep 17 00:00:00 2001 From: Paul Kippes Date: Tue, 7 Mar 2023 00:47:25 -0600 Subject: [PATCH] Restore floathex parsing support for explicit '+' expo sign The floating-point literal representation supports explicit exponent signs, if given. Support for '+' was okay prior to cc95b95a7e3ebf0e1b48404b791b676b12d2bc72 changes. --- BiNums.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/BiNums.cpp b/BiNums.cpp index a5fc5f3..8da94ad 100644 --- a/BiNums.cpp +++ b/BiNums.cpp @@ -1599,6 +1599,7 @@ std::string_view GetIdentifier(std::string_view s) || (ch >= 'a' && ch <= 'z') || (ch == '.') || (ch == '-') + || (ch == '+') || (ch == '_'); };