[Issue 17843] -betterC struct with `double` field generates references to TypeInfo

2018-02-10 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17843 Walter Bright changed: What|Removed |Added CC||azi.has...@live.fr

[Issue 17843] -betterC struct with `double` field generates references to TypeInfo

2017-12-18 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17843 --- Comment #4 from github-bugzi...@puremagic.com --- Commits pushed to stable at https://github.com/dlang/dmd https://github.com/dlang/dmd/commit/1d2da668320f4c5ff070f65f50ca694bfc31cddb fix Issue 17843 - -betterC struct with field generates

[Issue 17843] -betterC struct with `double` field generates references to TypeInfo

2017-11-30 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17843 --- Comment #3 from github-bugzi...@puremagic.com --- Commits pushed to master at https://github.com/dlang/dmd https://github.com/dlang/dmd/commit/1d2da668320f4c5ff070f65f50ca694bfc31cddb fix Issue 17843 - -betterC struct with field generates

[Issue 17843] -betterC struct with `double` field generates references to TypeInfo

2017-11-30 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17843 github-bugzi...@puremagic.com changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 17843] -betterC struct with `double` field generates references to TypeInfo

2017-09-20 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17843 --- Comment #2 from Walter Bright --- For older compilers, a workaround is to add a toHash() dummy member function: extern (D) size_t toHash() const nothrow @safe { return 0; } for the struct with a float/double/real in

[Issue 17843] -betterC struct with `double` field generates references to TypeInfo

2017-09-20 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17843 --- Comment #1 from Walter Bright --- https://github.com/dlang/dmd/pull/7151 --

[Issue 17843] -betterC struct with `double` field generates references to TypeInfo

2017-09-20 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17843 Walter Bright changed: What|Removed |Added Keywords||betterC --