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

DerivationFrameworkInDet: Fix clang 10 warning.

Avoid spurious object copy in range for.
parent 2ce81142
No related branches found
No related tags found
No related merge requests found
...@@ -88,7 +88,7 @@ namespace DerivationFramework { ...@@ -88,7 +88,7 @@ namespace DerivationFramework {
scterr[kSCT_BSErr_Ntot].push_back(totalNumErrors); scterr[kSCT_BSErr_Ntot].push_back(totalNumErrors);
// loop in errorSet // loop in errorSet
for(const auto error : errorSet) { for(const auto& error : errorSet) {
ATH_MSG_DEBUG("debugging information"); ATH_MSG_DEBUG("debugging information");
Identifier itId = m_sctId->wafer_id(error); Identifier itId = m_sctId->wafer_id(error);
ATH_MSG_DEBUG(error); ATH_MSG_DEBUG(error);
......
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