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

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

Former-commit-id: fa6c2481a6b1e2c8858f6a002b58bc88d5165f43
parent b722cb72
No related merge requests found
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> 2016-12-13 Werner Freund <wsfreund@cern.ch>
* Tagging CaloRingerAlgs-00-00-28. * Tagging CaloRingerAlgs-00-00-28.
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration 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) // STL include(s)
#include <algorithm> #include <algorithm>
...@@ -195,7 +195,7 @@ StatusCode xAODRingSetConfWriter::copyKeyToStore( const std::string &key ) ...@@ -195,7 +195,7 @@ StatusCode xAODRingSetConfWriter::copyKeyToStore( const std::string &key )
contCopy->reserve( cont->size() ); contCopy->reserve( cont->size() );
contAuxCopy->reserve( cont->size() ); contAuxCopy->reserve( cont->size() );
ATH_MSG_DEBUG("Copying object with key: " << key); 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:"); ATH_MSG_VERBOSE("Original object:");
// Print-out object: // Print-out object:
obj->print( msg(), MSG::VERBOSE ); 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