Fix logic error causing number tokens to be parsed as though they had two decimal place indicators (periods).

This commit is contained in:
2025-05-22 18:08:48 -05:00
parent 3357409aa7
commit b2d78e5b33

View File

@@ -119,7 +119,7 @@ namespace JJX::json {
if (decimal_present)
break;
decimal_present = true;
token.value += c;
//token.value += c; // This caused two dots to be inserted.
}
// Scientific notation.