On 10/25/2011 11:45 PM, Don Clugston wrote:

The last pull request (#474) didn't get merged into D1. It was only 3 lines:

             else
             {   /* For arrays, $ will either be a compile-time constant
                  * (in which case its value in set during constant-folding),
                  * or a variable (in which case an expression is created in
                  * toir.c).
                  */
-                v->init = new VoidInitializer(0);
+                VoidInitializer *e = new VoidInitializer(0);
+                e->type = Type::tsize_t;
  +               v->init = e;
             }
             *pvar = v;

But it's hardly worth delaying the release just for this.
_______________________________________________


I see the problem, it was pulled in. I just hadn't pushed it.
_______________________________________________
dmd-beta mailing list
[email protected]
http://lists.puremagic.com/mailman/listinfo/dmd-beta

Reply via email to