commit | c20b82a4edbf6fd3c61cd67f25ee2dd0c144cd43 | [log] [tgz] |
---|---|---|
author | Bjorn Terelius <terelius@webrtc.org> | Tue Nov 20 12:41:23 2018 |
committer | Commit Bot <commit-bot@chromium.org> | Tue Nov 20 13:18:13 2018 |
tree | e75ca5f217e89163701c9c33284a7bfdd77696d2 | |
parent | 22b70ff1d4308cb56c08d16e06f2f6945b984831 [diff] |
Remove unused variables in RtcEventAudioXStreamConfig::Copy() Bug: None Change-Id: I186bf14e568bbd3d6cf17731602a75d3ea9e4aed Reviewed-on: https://webrtc-review.googlesource.com/c/111464 Reviewed-by: Niels Moller <nisse@webrtc.org> Commit-Queue: Björn Terelius <terelius@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25711}
diff --git a/logging/rtc_event_log/events/rtc_event_audio_receive_stream_config.cc b/logging/rtc_event_log/events/rtc_event_audio_receive_stream_config.cc index 50d67ff..fdef393 100644 --- a/logging/rtc_event_log/events/rtc_event_audio_receive_stream_config.cc +++ b/logging/rtc_event_log/events/rtc_event_audio_receive_stream_config.cc
@@ -41,7 +41,6 @@ std::unique_ptr<RtcEventAudioReceiveStreamConfig> RtcEventAudioReceiveStreamConfig::Copy() const { - auto config_copy = absl::make_unique<rtclog::StreamConfig>(*config_); return absl::WrapUnique<RtcEventAudioReceiveStreamConfig>( new RtcEventAudioReceiveStreamConfig(*this)); }
diff --git a/logging/rtc_event_log/events/rtc_event_audio_send_stream_config.cc b/logging/rtc_event_log/events/rtc_event_audio_send_stream_config.cc index 240e831..f1a85bf 100644 --- a/logging/rtc_event_log/events/rtc_event_audio_send_stream_config.cc +++ b/logging/rtc_event_log/events/rtc_event_audio_send_stream_config.cc
@@ -41,7 +41,6 @@ std::unique_ptr<RtcEventAudioSendStreamConfig> RtcEventAudioSendStreamConfig::Copy() const { - auto config_copy = absl::make_unique<rtclog::StreamConfig>(*config_); return absl::WrapUnique<RtcEventAudioSendStreamConfig>( new RtcEventAudioSendStreamConfig(*this)); }