Build fix for FreeBSD.

This commit is contained in:
Gunnar Beutner 2014-03-31 18:30:57 +02:00
parent 5c3586b400
commit e3d96eb62d
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ void __cxa_throw(void *obj, void *pvtinfo, void (*dest)(void *))
if (real_cxa_throw == 0)
real_cxa_throw = (cxa_throw_fn)dlsym(RTLD_NEXT, "__cxa_throw");
#ifdef __GLIBC__
#ifdef __GLIBCXX__
void *thrown_ptr = obj;
const std::type_info *tinfo = static_cast<std::type_info *>(pvtinfo);
const std::type_info *boost_exc = &typeid(boost::exception);