[dmd-beta] dmd 1.071 and 2.056 beta 3

Walter Bright walter at digitalmars.com
Wed Oct 26 01:14:11 PDT 2011



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.


More information about the dmd-beta mailing list