summaryrefslogtreecommitdiff
path: root/src/aux.cc
blob: c1590e553fe7161f4d8f3bd2b504aad7570ac223 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

#include "stdexcept.h"

extern "C" void __cxa_bad_cast()
{
    throw std::bad_cast();
}

extern "C" void __cxa_bad_typeid()
{
    throw std::bad_typeid();
}