1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-24 02:28:01 +02:00

Numeric ToString/Parse fixes

This commit is contained in:
Brian Fiete 2022-02-15 17:28:12 -05:00
parent f1eca07510
commit 9ca48c26f2
4 changed files with 43 additions and 0 deletions

View file

@ -174,6 +174,10 @@ namespace System
{
// Ignore
}
else if ((c == '+') && (i == 0))
{
// Ignore
}
else
return .Err(.InvalidChar(result));
}