Skip to content
Snippets Groups Projects
Commit d68e6009 authored by Adam Edward Barton's avatar Adam Edward Barton
Browse files

Merge branch 'asgtools_20250214' into 'main'

AsgTools: Fix compilation with clang19

See merge request atlas/athena!77831
parents 11bfd394 b19a3359
No related branches found
No related tags found
No related merge requests found
......@@ -124,7 +124,7 @@ namespace asg {
// If a transient store is available, try recording it there:
if( m_ptds ) {
if( m_ptds->template record( std::move( pobj ), name ).isSuccess() ) {
if( m_ptds->record( std::move( pobj ), name ).isSuccess() ) {
return StatusCode::SUCCESS;
} else {
return StatusCode::FAILURE;
......@@ -132,7 +132,7 @@ namespace asg {
}
// If not, then let's try with the event store:
if( m_pevm->template record( std::move( pobj ), name ).isSuccess() ) {
if( m_pevm->record( std::move( pobj ), name ).isSuccess() ) {
return StatusCode::SUCCESS;
} else {
return StatusCode::FAILURE;
......
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