[Issue 17811] No stack for Win32 exceptions
via Digitalmars-d-bugs
digitalmars-d-bugs at puremagic.com
Wed Sep 6 19:29:09 UTC 2017
https://issues.dlang.org/show_bug.cgi?id=17811
--- Comment #1 from bitwise <nicolas.jinchereau at gmail.com> ---
I actually just figured out where the problem was, and it wasn't even C++ code.
I was the assert that fires when you try to access an uninitialized payload of
RefCounted:
@property nothrow @safe pure @nogc
ref inout(T) refCountedPayload() inout return
{
--> assert(_refCounted.isInitialized, "Attempted to access uninitialized..");
return _refCounted._store._payload;
}
--
More information about the Digitalmars-d-bugs
mailing list