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.

Reply via email to