Skip to content
Snippets Groups Projects
Commit 83b73af3 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'clang10.SCT_ConditionsAlgorithms-20200810' into 'master'

SCT_ConditionsAlgorithms: Fix clang10 warnings.

See merge request atlas/athena!35494
parents 93e16efa 43a2ad4d
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,7 @@ StatusCode SCT_FlaggedConditionTestAlg::execute(const EventContext& ctx) const { ...@@ -33,7 +33,7 @@ StatusCode SCT_FlaggedConditionTestAlg::execute(const EventContext& ctx) const {
ATH_MSG_ALWAYS("------------------------------------------------------------"); ATH_MSG_ALWAYS("------------------------------------------------------------");
ATH_MSG_ALWAYS(" numBadIds " << m_flaggedTool->numBadIds(ctx)); ATH_MSG_ALWAYS(" numBadIds " << m_flaggedTool->numBadIds(ctx));
const SCT_FlaggedCondData* badIds{m_flaggedTool->getBadIds(ctx)}; const SCT_FlaggedCondData* badIds{m_flaggedTool->getBadIds(ctx)};
for (const std::pair<IdentifierHash, std::string>& badId : *badIds) { for (const std::pair<const IdentifierHash, std::string>& badId : *badIds) {
ATH_MSG_ALWAYS(" Wafer hash " << badId.first << " reason " << badId.second); ATH_MSG_ALWAYS(" Wafer hash " << badId.first << " reason " << badId.second);
} }
......
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