Comment #0 by iamthewilsonator — 2020-10-28T05:05:23Z
version(UseString)
{
extern(C++, `std`) void a(){}
pragma(msg, a.mangleof);// _ZSt1av
}
else
{
extern(C++, std) void a(){}
pragma(msg, a.mangleof);// _ZNSt1bEv
}
Not sure which one is the correct one, but they should both be the same.
Comment #1 by robert.schadek — 2024-12-13T19:12:20Z