changeset 1335:2badba544b8b

Increased a buffer size in TypeInfo_StaticArray from 10 to 20 to avoid assertion failures! Thanks LeoD.
author Tomas Lindquist Olsen <tomas.l.olsen gmail com>
date Sun, 10 May 2009 17:25:47 +0200
parents 7c6dcb98ac35
children 4b2b2cd865e3
files runtime/internal/genobj.d
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/runtime/internal/genobj.d	Sun May 10 15:50:51 2009 +0200
+++ b/runtime/internal/genobj.d	Sun May 10 17:25:47 2009 +0200
@@ -453,7 +453,7 @@
 {
     char[] toString()
     {
-        char [10] tmp = void;
+        char [20] tmp = void;
         return value.toString() ~ "[" ~ intToUtf8(tmp, len) ~ "]";
     }