October 26, 2013 Array of struct with floating point members seg faults | ||||
---|---|---|---|---|
| ||||
The following program seg faults: struct Point { double x; double y; } void main() { Point[1] arr; } Any combination of float and double members exhibit the same bug as long as the size of the struct is 16. I vaguely remember seeing a similar bug before but I can't find it in bugzilla. Ali |
October 26, 2013 Re: Array of struct with floating point members seg faults | ||||
---|---|---|---|---|
| ||||
Posted in reply to Ali Çehreli | On Saturday, 26 October 2013 at 17:46:31 UTC, Ali Çehreli wrote: > The following program seg faults: > > struct Point > { > double x; > double y; > } > > void main() > { > Point[1] arr; > } > > Any combination of float and double members exhibit the same bug as long as the size of the struct is 16. > > I vaguely remember seeing a similar bug before but I can't find it in bugzilla. > > Ali http://d.puremagic.com/issues/show_bug.cgi?id=9969 http://d.puremagic.com/issues/show_bug.cgi?id=9449 |
Copyright © 1999-2021 by the D Language Foundation