Skip to content
Snippets Groups Projects
Commit 269e649f authored by scott snyder's avatar scott snyder Committed by scott snyder
Browse files

AthenaServices: Fix clang warning.

Spurious copy in range-for.
parent 7481564f
8 merge requests!69091Fix correlated smearing bug in JER in JetUncertainties in 22.0,!58791DataQualityConfigurations: Modify L1Calo config for web display,!51674Fixing hotSpotInHIST for Run3 HIST,!50012RecExConfig: Adjust log message levels from GetRunNumber and GetLBNumber,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!46538Draft: Added missing xAOD::TrigConfKeys from DESDM_MCP,!46485AthenaServices: Fix clang warning.
......@@ -1058,7 +1058,7 @@ void AthenaOutputStream::handleVariableSelection (const SG::IConstAuxStore& auxs
SG::auxid_set_t selected = sel.getSelectedAuxIDs( all );
// Loop over all and build a list of vetoed AuxIDs from non selected ones
for( const auto& auxid : all ) {
for( const SG::auxid_t auxid : all ) {
if ( !selected.test( auxid ) ) {
vset.insert( auxid );
}
......
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