Added another mode of diagnostic trap

This commit is contained in:
Alexey Milovidov 2019-12-23 23:26:46 +03:00
parent f7d9ada51c
commit badbee2385

View File

@ -83,6 +83,10 @@ public:
{
abort();
}
else if (mode == "std::terminate")
{
std::terminate();
}
else if (mode == "use after free")
{
int * x_ptr;