4 lines
171 B
D
4 lines
171 B
D
shared void function() sharedStaticDtorHook;
|
|
shared void function() staticDtorHook;
|
|
shared static ~this() { sharedStaticDtorHook(); }
|
|
static ~this() { staticDtorHook(); }
|