mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-02-28 17:43:14 +01:00
Increased a buffer size in TypeInfo_StaticArray from 10 to 20 to avoid assertion failures! Thanks LeoD.
This commit is contained in:
@@ -453,7 +453,7 @@ class TypeInfo_StaticArray : TypeInfo
|
||||
{
|
||||
char[] toString()
|
||||
{
|
||||
char [10] tmp = void;
|
||||
char [20] tmp = void;
|
||||
return value.toString() ~ "[" ~ intToUtf8(tmp, len) ~ "]";
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user