From c7bae18633d9b2924b28490ff5677e7c12e17563 Mon Sep 17 00:00:00 2001 From: Emil Dotchevski Date: Mon, 19 Sep 2011 21:45:34 +0000 Subject: [PATCH] Fix for the problem reported by Pavel Lebedev. Thanks! [SVN r74471] --- include/boost/exception/info.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/exception/info.hpp b/include/boost/exception/info.hpp index 5530746..7b56076 100644 --- a/include/boost/exception/info.hpp +++ b/include/boost/exception/info.hpp @@ -97,7 +97,7 @@ boost { shared_ptr const & p = i->second; #ifndef BOOST_NO_RTTI - BOOST_ASSERT( BOOST_EXCEPTION_DYNAMIC_TYPEID(*p).type_==ti.type_ ); + BOOST_ASSERT( *BOOST_EXCEPTION_DYNAMIC_TYPEID(*p).type_==*ti.type_ ); #endif return p; }