From 93ee85a925d959ecd03b29c3530a73d628ff9511 Mon Sep 17 00:00:00 2001 From: Mathieu Lacage Date: Sat, 1 Mar 2008 05:37:56 +0100 Subject: [PATCH] output correct information about non-matching types. --- src/core/callback.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/callback.h b/src/core/callback.h index a8a1fd41c..9be3c2dd4 100644 --- a/src/core/callback.h +++ b/src/core/callback.h @@ -357,7 +357,7 @@ private: { NS_FATAL_ERROR ("Incompatible types. (feed to \"c++filt -t\")" " got=" << typeid (*other).name () << - ", expected=" << typeid (*this).name ()); + ", expected=" << typeid (CallbackImpl *).name ()); } m_impl = const_cast (PeekPointer (other)); }