On Tuesday, 18 April 2017 at 14:15:59 UTC, Stanislav Blinov wrote:
On Tuesday, 18 April 2017 at 14:09:28 UTC, Stanislav Blinov wrote:

        foreach(row; result)
        {
            arr ~= row.toStruct(cargpspoint);
        }

Sorry, this should be

foreach(row; result)
{
    row.toStruct(cargpspoint);
    arr ~= cargpspoint;
}

Thanks I will try! But why in my code memory do not released? Do you have any idea?

Reply via email to