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;
}