[Issue 14401] typeid(shared X).init is empty for class types

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14401

--- Comment #8 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/9f68938b8f3420d676e5231867c82101ef5d1c81
Supplemental fix for issue 14401 - Deal with the type change of
typeid(ClassType).init to const(void)[]

https://github.com/dlang/phobos/commit/3ffc006c20d759ad7197eae879cc894f7bb5efbb
Merge pull request #3143 from 9rnsr/fix14401

--


[Issue 14401] typeid(shared X).init is empty for class types

2017-07-19 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14401

--- Comment #7 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/6fa857d5535d52df08fb93ae975ee864101537b0
fix Issue 14401 - typeid(shared X).init is empty for class types

https://github.com/dlang/druntime/commit/bd3f4cb2122edd1a7c107f86936c20bba15191b6
Merge pull request #1205 from 9rnsr/fix14401

--


[Issue 14401] typeid(shared X).init is empty for class types

2015-06-17 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14401

--- Comment #6 from github-bugzi...@puremagic.com ---
Commits pushed to stable at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/94f725f3f56df4257647e348184586a1661f60cf
fix root/rmem.d to follow issue 14401 fix in druntime.

https://github.com/D-Programming-Language/dmd/commit/7f8f27c9520c559190d5ac366cd337f9ef5c597b
Merge pull request #4572 from 9rnsr/fix14401

--


[Issue 14401] typeid(shared X).init is empty for class types

2015-06-17 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14401

--- Comment #5 from github-bugzi...@puremagic.com ---
Commits pushed to stable at https://github.com/D-Programming-Language/druntime

https://github.com/D-Programming-Language/druntime/commit/6fa857d5535d52df08fb93ae975ee864101537b0
fix Issue 14401 - typeid(shared X).init is empty for class types

https://github.com/D-Programming-Language/druntime/commit/bd3f4cb2122edd1a7c107f86936c20bba15191b6
Merge pull request #1205 from 9rnsr/fix14401

--


[Issue 14401] typeid(shared X).init is empty for class types

2015-04-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14401

--- Comment #4 from github-bugzi...@puremagic.com ---
Commits pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/94f725f3f56df4257647e348184586a1661f60cf
fix root/rmem.d to follow issue 14401 fix in druntime.

https://github.com/D-Programming-Language/dmd/commit/7f8f27c9520c559190d5ac366cd337f9ef5c597b
Merge pull request #4572 from 9rnsr/fix14401

fix root/rmem.d to follow issue 14401 fix in druntime.

--


[Issue 14401] typeid(shared X).init is empty for class types

2015-04-03 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14401

Walter Bright bugzi...@digitalmars.com changed:

   What|Removed |Added

 CC||bugzi...@digitalmars.com
   Hardware|x86 |All
 OS|Mac OS X|All

--


[Issue 14401] typeid(shared X).init is empty for class types

2015-04-03 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14401

Kenji Hara k.hara...@gmail.com changed:

   What|Removed |Added

   Keywords||pull, wrong-code
  Component|DMD |druntime

--- Comment #1 from Kenji Hara k.hara...@gmail.com ---
The root problem is in the definition of TypeInfo_Class. So it's a druntime
issue.

https://github.com/D-Programming-Language/druntime/pull/1205
https://github.com/D-Programming-Language/phobos/pull/3143

--


[Issue 14401] typeid(shared X).init is empty for class types

2015-04-03 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14401

--- Comment #2 from github-bugzi...@puremagic.com ---
Commits pushed to master at https://github.com/D-Programming-Language/phobos

https://github.com/D-Programming-Language/phobos/commit/9f68938b8f3420d676e5231867c82101ef5d1c81
Supplemental fix for issue 14401 - Deal with the type change of
typeid(ClassType).init to const(void)[]

https://github.com/D-Programming-Language/phobos/commit/3ffc006c20d759ad7197eae879cc894f7bb5efbb
Merge pull request #3143 from 9rnsr/fix14401

Supplemental fix for issue 14401 - Deal with the type change of
typeid(ClassType).init to const(void)[]

--


[Issue 14401] typeid(shared X).init is empty for class types

2015-04-03 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14401

--- Comment #3 from github-bugzi...@puremagic.com ---
Commits pushed to master at https://github.com/D-Programming-Language/druntime

https://github.com/D-Programming-Language/druntime/commit/6fa857d5535d52df08fb93ae975ee864101537b0
fix Issue 14401 - typeid(shared X).init is empty for class types

`TypeInfo_Class` needs to override `init()` method for the `TypeInfo_Const` and
its derived TypeInfo classes.

https://github.com/D-Programming-Language/druntime/commit/bd3f4cb2122edd1a7c107f86936c20bba15191b6
Merge pull request #1205 from 9rnsr/fix14401

Issue 14401 - typeid(shared X).init is empty for class types

--