Skip to content
Snippets Groups Projects
Commit 7d16e007 authored by Ben Boeckel's avatar Ben Boeckel
Browse files

clang-tidy: fix `performance-for-range-copy` lints

parent 8832f922
Branches
Tags
No related merge requests found
......@@ -438,7 +438,7 @@ vtkDIYGhostUtilities::LinkMap vtkDIYGhostUtilities::ComputeLinkMapUsingBoundingB
BlockT* block = master.block<BlockT>(localId);
vtkBoundingBox& localbb = block->BoundingBox;
BlockMapType<vtkBoundingBox>& bb = block->NeighborBoundingBoxes;
for (auto item : bb)
for (auto const& item : bb)
{
if (localbb.Intersects(item.second))
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment