extern(C++) void throwEx(); //compiled by G++ and throws exception
extern(C++)
void dFunc(void*)
{
throwEx();
}
catchException(&dFunc, ...); //terminate programm instead of
catch it. Should be works in gdc
IgorStepanov via Digitalmars-d Wed, 24 Sep 2014 15:00:55 -0700
extern(C++) void throwEx(); //compiled by G++ and throws exception
extern(C++)
void dFunc(void*)
{
throwEx();
}
catchException(&dFunc, ...); //terminate programm instead of
catch it. Should be works in gdc