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

AthenaPoolCnvSvc: Fix unneeded AttributeList copy.

Remove need for implicit conversion of coral::AttribtueList to AthenaAttribuetList
(which involves a MT-unsafe copy).
parent d533d94c
No related branches found
No related tags found
No related merge requests found
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
*/
/** @file T_AthenaPoolCoolMultChanCnv.icc
......@@ -268,7 +268,7 @@ T_AthenaPoolCoolMultChanCnv<COLL_T, ELEM_T, ELEM_P>::attrListCollToObject(CondAt
for (; it != last; ++it, ++itIOV) {
try {
// pool token/ref
const AthenaAttributeList& attrList = (*it).second;
const coral::AttributeList& attrList = (*it).second;
token=attrList["PoolRef"].data<std::string>();
}
// FIXME exception
......
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