Skip to content
Snippets Groups Projects
Commit fa6c2481 authored by Scott Snyder's avatar Scott Snyder Committed by Graeme Stewart
Browse files

DV const correctness. (CaloRingerAlgs-00-00-29)

parent 70a1c555
1 merge request!20779WIP: Migrate DataQualityTools to ToolHandles
2017-01-28 scott snyder <snyder@bnl.gov>
* Tagging CaloRingerAlgs-00-00-29.
* src/xAODRingSetConfWriter.cxx: DV const correctness.
2016-12-13 Werner Freund <wsfreund@cern.ch>
* Tagging CaloRingerAlgs-00-00-28.
......
......@@ -2,7 +2,7 @@
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
// $Id: xAODRingSetConfWriter.cxx 787810 2016-12-02 05:39:13Z ssnyder $
// $Id: xAODRingSetConfWriter.cxx 789607 2016-12-14 04:40:50Z ssnyder $
// STL include(s)
#include <algorithm>
......@@ -195,7 +195,7 @@ StatusCode xAODRingSetConfWriter::copyKeyToStore( const std::string &key )
contCopy->reserve( cont->size() );
contAuxCopy->reserve( cont->size() );
ATH_MSG_DEBUG("Copying object with key: " << key);
for ( value_type obj : *cont ) {
for ( const base_value_type* obj : *cont ) {
ATH_MSG_VERBOSE("Original object:");
// Print-out object:
obj->print( msg(), MSG::VERBOSE );
......
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