mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-12 00:37:41 +01:00
5 lines
171 B
D
5 lines
171 B
D
shared void function() sharedStaticDtorHook;
|
|
shared void function() staticDtorHook;
|
|
shared static ~this() { sharedStaticDtorHook(); }
|
|
static ~this() { staticDtorHook(); }
|