aboutsummaryrefslogtreecommitdiffstats
path: root/wirish/cxxabi-compat.cpp
blob: 516b112acd04a512a95da953f644b09f7a4b7642 (plain)
1
2
3
4
5
6
/* We compile with nodefaultlibs, so we need to provide an error
 * handler for an empty pure virtual function */
extern "C" void __cxa_pure_virtual(void) {
    while(1)
        ;
}