Skip to content

Commit

Permalink
Restore floathex parsing support for explicit '+' expo sign
Browse files Browse the repository at this point in the history
The floating-point literal representation supports explicit exponent signs, if
given.  Support for '+' was okay prior to
cc95b95 changes.
  • Loading branch information
kippesp authored and pmkippes committed Mar 7, 2023
1 parent 686f9d3 commit 91525dc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions BiNums.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1599,6 +1599,7 @@ std::string_view GetIdentifier(std::string_view s)
|| (ch >= 'a' && ch <= 'z')
|| (ch == '.')
|| (ch == '-')
|| (ch == '+')
|| (ch == '_');
};

Expand Down

0 comments on commit 91525dc

Please sign in to comment.