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; }
Stanislav Blinov via Digitalmars-d-learn Tue, 18 Apr 2017 07:21:18 -0700
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; }