Thread overview
[Issue 17843] -betterC struct with `double` field generates references to TypeInfo
Sep 20, 2017
Walter Bright
Sep 20, 2017
Walter Bright
Sep 20, 2017
Walter Bright
Feb 10, 2018
Walter Bright
September 20, 2017
https://issues.dlang.org/show_bug.cgi?id=17843

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |betterC

--
September 20, 2017
https://issues.dlang.org/show_bug.cgi?id=17843

--- Comment #1 from Walter Bright <bugzilla@digitalmars.com> ---
https://github.com/dlang/dmd/pull/7151

--
September 20, 2017
https://issues.dlang.org/show_bug.cgi?id=17843

--- Comment #2 from Walter Bright <bugzilla@digitalmars.com> ---
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 it.

--
November 30, 2017
https://issues.dlang.org/show_bug.cgi?id=17843

--- Comment #3 from github-bugzilla@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 references to TypeInfo

https://github.com/dlang/dmd/commit/6e00baac3d3bd25a792717bacc194e39bba8fe81 Merge pull request #7151 from WalterBright/fix17843

fix Issue 17843 - -betterC struct with  field generates references to…

--
November 30, 2017
https://issues.dlang.org/show_bug.cgi?id=17843

github-bugzilla@puremagic.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--
December 18, 2017
https://issues.dlang.org/show_bug.cgi?id=17843

--- Comment #4 from github-bugzilla@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 references to TypeInfo

https://github.com/dlang/dmd/commit/6e00baac3d3bd25a792717bacc194e39bba8fe81 Merge pull request #7151 from WalterBright/fix17843

--
February 10, 2018
https://issues.dlang.org/show_bug.cgi?id=17843

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |azi.hassan@live.fr

--- Comment #5 from Walter Bright <bugzilla@digitalmars.com> ---
*** Issue 17825 has been marked as a duplicate of this issue. ***

--