GSoC 2016 - std.experimental.xml progress

Lodovico Giaretta via Digitalmars-d-announce digitalmars-d-announce at puremagic.com
Mon May 2 07:30:04 PDT 2016


On Monday, 2 May 2016 at 12:25:03 UTC, 9il wrote:
> Hello Lodovico,
>
> Thank you for working on new xml. Please use size_t and 
> sizediff_t instead of uint and int in your loops:
>
> for (auto i = 0; i < t.length; i++)
>
> should be replaced with
>
> foreach (size_t i; 0 .. t.length)
>
> Best regards,
> Ilya

I'll fix this. Thank you very much.


More information about the Digitalmars-d-announce mailing list