1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-10-20 18:17:42 +00:00

clang-tidy: apply performance-for-range-copy check

See https://clang.llvm.org/extra/clang-tidy/checks/performance-for-range-copy.html
This commit is contained in:
Carles Fernandez
2019-02-12 01:25:27 +01:00
parent eae967ed1a
commit 5b50e74ca8
3 changed files with 5 additions and 5 deletions

View File

@@ -629,7 +629,7 @@ private:
recent_msgs_.pop_front();
}
for (auto participant : participants_)
for (const auto& participant : participants_)
{
participant->deliver(msg);
}