spatial searching range loop analysis ref to copy warning fixed

This commit is contained in:
Dmitry Anisimov 2021-01-07 17:05:04 +01:00
parent 357186df40
commit 3fbb269392
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ int main()
// neighbor search returns a set of pair of
// point and distance <Point_3,FT>, here we
// keep the points only
for (const Point_with_distance& pwd : search)
for (const Point_with_distance pwd : search)
neighbors[s].push_back (pwd.first);
}
});