Nicholas Wilson wrote:

On Thursday, 22 June 2017 at 12:52:26 UTC, Manu wrote:
How do I properly implement object destruction of extern(C++) classes (with
virtual destructors)?

I'm not going to embarrass myself by pasting some of my attempts to achieve this goal to date.

I take it you tried calling super.~this() already? that would be my first thought.

that won't work, 'cause `~this` is not a valid symbol. yet `super.__dtor()` will work.

Reply via email to