Skip to content
Snippets Groups Projects
Commit 1f5c0ce4 authored by Marco Clemencic's avatar Marco Clemencic
Browse files
parent d297a9c1
No related branches found
No related tags found
No related merge requests found
......@@ -293,7 +293,7 @@ LockedHandle<T> THistSvc::regShared_i( const std::string& id, std::unique_ptr<T>
T* phist = dynamic_cast<T*>( hid->obj );
if ( phist == 0 ) {
error() << "regSharedHist: unable to dcast retrieved shared hist \"" << id << "\" of type "
<< hid->obj->IsA()->GetName() << " to requested type " << phist->IsA()->GetName() << endmsg;
<< hid->obj->IsA()->GetName() << " to requested type " << System::typeinfoName( typeid( T ) ) << endmsg;
} else {
lh.set( phist, hid->mutex );
delete hist.release();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment