blob: 67772f778be37f6be2af0c20e7aba98ad9265351 (
plain)
1
2
3
4
5
6
|
#include "arch/exception_handling/panic.hpp"
extern "C" auto __cxa_pure_virtual() -> void
{
teachos::arch::exception_handling::panic("Runtime", "Tried to call a pure virtual function!");
}
|