Skip to content
Snippets Groups Projects

C++20 fixes

Merged Andre Sailer requested to merge sailer/Gaudi:c++20Fixes into master
6 files
+ 7
7
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -111,7 +111,7 @@ void RecordDataSvc::handle( const Incident& incident ) {
for ( const auto& i : incidents ) m_incidentSvc->fireIncident( Incident{ i, m_incidentName } );
}
}
} else if ( incident.type() == m_saveIncidentName ) {
} else if ( m_saveIncidentName == incident.type() ) {
always() << "Saving records not implemented." << endmsg;
}
}
Loading