mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Fixed AppendF implicit index with width specifier
This commit is contained in:
parent
f47d9e0b01
commit
ca81fd14c2
1 changed files with 1 additions and 1 deletions
|
@ -1313,7 +1313,7 @@ namespace System
|
|||
if (pos == len || (ch = format[pos]) < '0' || ch > '9')
|
||||
{
|
||||
if ((pos < len) &&
|
||||
((ch == '}') || (ch == ':')))
|
||||
((ch == '}') || (ch == ':') || (ch == ',')))
|
||||
index = autoArgIdx++;
|
||||
else
|
||||
return FormatError();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue