[clang-tidy] Apply performance-for-range-copy fixes.

This CL applies clang-tidy's performance-for-range-copy [1] on the
WebRTC codebase.

All changes in this CL are automatically generated by both clang-tidy
and 'git cl format'.

[1] - https://clang.llvm.org/extra/clang-tidy/checks/performance-for-range-copy.html

Bug: webrtc:10215
Change-Id: I7c83290b8866d76129bbec4e24e6701f5014102e
Reviewed-on: https://webrtc-review.googlesource.com/c/120043
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#26420}
This commit is contained in:
Mirko Bonadei
2019-01-27 17:29:42 +01:00
committed by Commit Bot
parent 2d65fff16f
commit 739baf097b
35 changed files with 100 additions and 100 deletions

View File

@ -1295,7 +1295,7 @@ void RtcEventLogEncoderNewFormat::EncodeRtpPacketIncoming(
const std::map<uint32_t, std::vector<const RtcEventRtpPacketIncoming*>>&
batch,
rtclog2::EventStream* event_stream) {
for (auto it : batch) {
for (const auto& it : batch) {
RTC_DCHECK(!it.second.empty());
EncodeRtpPacket(it.second, event_stream->add_incoming_rtp_packets());
}
@ -1305,7 +1305,7 @@ void RtcEventLogEncoderNewFormat::EncodeRtpPacketOutgoing(
const std::map<uint32_t, std::vector<const RtcEventRtpPacketOutgoing*>>&
batch,
rtclog2::EventStream* event_stream) {
for (auto it : batch) {
for (const auto& it : batch) {
RTC_DCHECK(!it.second.empty());
EncodeRtpPacket(it.second, event_stream->add_outgoing_rtp_packets());
}