Skip to content
Snippets Groups Projects

Draft: StoreGate: WriteDecorHandle consistency check.

Closed Scott Snyder requested to merge ssnyder/athena:wdhCheck.StoreGate-20230331 into 23.0
8 files
+ 115
8
Compare changes
  • Side-by-side
  • Inline
Files
8
/*
* Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration.
* Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration.
*/
/**
* @file StoreGate/ReadDecorHandle.icc
@@ -128,6 +128,9 @@ inline
typename ReadDecorHandle<T, D>::const_reference_type
ReadDecorHandle<T, D>::operator() (const AuxElement& e) const
{
// FIXME? In principle, should check here that E is actually an element
// of our declared container. But that would force a SG lookup here
// which we otherwise wouldn't need to do.
return m_acc (e);
}
Loading