Skip to content
Snippets Groups Projects
Commit 63bf650f authored by Walter Lampl's avatar Walter Lampl
Browse files

Merge branch 'trig_warning_fix' into 'master'

silence warning about missing ToolsRegistry tool

Closes ATLASRECTS-5413

See merge request atlas/athena!31841
parents 943b72ba 295c6eb3
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ namespace Utils {
#else
template< typename T >
static bool toolStoreContains( const std::string& name ) {
return ( dynamic_cast< T* >( asg::ToolStore::get( name ) ) != 0 );
return ( dynamic_cast< T* >( asg::ToolStore::get( name, true ) ) != 0 );
}
#endif
......
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