More tests:
-removed some unused code -fixed bug with struct destructors (Mallocator called __dtor instead of __xdtor) -added unittests for events -addded _d_eh_personality null implementation as LDC betterC bug workaround
This commit is contained in:
parent
d0b7138f9f
commit
cb9eaad123
5 changed files with 160 additions and 19 deletions
|
|
@ -385,3 +385,14 @@ extern (C) int main(int argc, char** args)
|
|||
else
|
||||
return 1;
|
||||
}
|
||||
|
||||
version (D_BetterC)
|
||||
{
|
||||
version(LDC)
|
||||
{
|
||||
extern (C) __gshared int _d_eh_personality(int, int, size_t, void*, void*)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue