Skip to content
Snippets Groups Projects
Commit 28aba961 authored by Scott Snyder's avatar Scott Snyder Committed by scott snyder
Browse files

AthenaKernel: Coverity 118547.

Fix coverity warning: shadowed parameter.
parent a668a9ae
No related branches found
No related tags found
1 merge request!20779WIP: Migrate DataQualityTools to ToolHandles
......@@ -193,9 +193,8 @@ bool MetaCont<T>::find(const SourceID& it, T*& t) const {
return true;
}
else {
typename MetaContSet::const_iterator it=m_metaSet.begin();
for (; it != m_metaSet.end(); ++it) {
std::cerr << "Container has SID=" << it->first << std::endl;
for (const auto& elt : m_metaSet) {
std::cerr << "Container has SID=" << elt.first << std::endl;
}
}
......
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