Skip to content
Snippets Groups Projects
Commit d68e6009 authored by Adam Edward Barton's avatar Adam Edward Barton :speech_balloon:
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
7 merge requests!78241Draft: FPGATrackSim: GenScan code refactor,!78236Draft: Switching Streams https://its.cern.ch/jira/browse/ATR-27417,!78056AFP monitoring: new synchronization and cleaning,!78041AFP monitoring: new synchronization and cleaning,!77990Updating TRT chip masks for L1TRT trigger simulation - ATR-28372,!77831AsgTools: Fix compilation with clang19,!76343Draft: MooTrackBuilder: Recalibrate NSW hits in refine method
......@@ -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