From 0169444661bd944e7d3338372ee85b03a1be1e94 Mon Sep 17 00:00:00 2001 From: anonymous Date: Wed, 25 Aug 2010 16:19:47 +0700 Subject: __cxa_pure_virtual was implemented --- src/aux.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') diff --git a/src/aux.cc b/src/aux.cc index c1590e5..382cc73 100644 --- a/src/aux.cc +++ b/src/aux.cc @@ -1,5 +1,6 @@ #include "stdexcept.h" +#include extern "C" void __cxa_bad_cast() { @@ -11,3 +12,7 @@ extern "C" void __cxa_bad_typeid() throw std::bad_typeid(); } +extern "C" void __cxa_pure_virtual() { + abort(); +} + -- cgit v1.2.3