Increased a buffer size in TypeInfo_StaticArray from 10 to 20 to avoid assertion failures! Thanks LeoD.

This commit is contained in:
Tomas Lindquist Olsen
2009-05-10 17:25:47 +02:00
parent 4f59c0cb7b
commit 0ab77de246

View File

@@ -453,7 +453,7 @@ class TypeInfo_StaticArray : TypeInfo
{
char[] toString()
{
char [10] tmp = void;
char [20] tmp = void;
return value.toString() ~ "[" ~ intToUtf8(tmp, len) ~ "]";
}