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

TileMonitoring: Fix clang 10 warning.

Avoid spurious object copy in range for.
parent 45f7b6b0
No related branches found
No related tags found
No related merge requests found
/* /*
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/ */
// ******************************************************************** // ********************************************************************
...@@ -141,7 +141,7 @@ StatusCode TileRawChannelTimeMonTool::bookHists() ...@@ -141,7 +141,7 @@ StatusCode TileRawChannelTimeMonTool::bookHists()
} }
} }
for (const std::pair<int, int> roses : m_timeDifferenceBetweenROS) { for (const std::pair<int, int>& roses : m_timeDifferenceBetweenROS) {
int ros1 = roses.first; int ros1 = roses.first;
int ros2 = roses.second; int ros2 = roses.second;
...@@ -367,7 +367,7 @@ StatusCode TileRawChannelTimeMonTool::fillHists() ...@@ -367,7 +367,7 @@ StatusCode TileRawChannelTimeMonTool::fillHists()
} }
int rosesPairIndex(0); int rosesPairIndex(0);
for (const std::pair<int, int> roses : m_timeDifferenceBetweenROS) { for (const std::pair<int, int>& roses : m_timeDifferenceBetweenROS) {
int ros1 = roses.first; int ros1 = roses.first;
int ros2 = roses.second; int ros2 = roses.second;
...@@ -377,7 +377,7 @@ StatusCode TileRawChannelTimeMonTool::fillHists() ...@@ -377,7 +377,7 @@ StatusCode TileRawChannelTimeMonTool::fillHists()
} else { } else {
int rosesPairIndex(0); int rosesPairIndex(0);
for (const std::pair<int, int> roses : m_timeDifferenceBetweenROS) { for (const std::pair<int, int>& roses : m_timeDifferenceBetweenROS) {
int ros1 = roses.first; int ros1 = roses.first;
int ros2 = roses.second; int ros2 = roses.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