From eb58464f82d1b308850a1d2fd4b6ccddd3627d5a Mon Sep 17 00:00:00 2001 From: Ivo Creusen Date: Mon, 10 Sep 2018 13:17:38 +0200 Subject: [PATCH] Remove the move constructor from NetEqState. This move constructor causes downstream issues, so it needs to be removed for now. Bug: webrtc:9667 Change-Id: Ic15bfdf6b392a95e05bf75bc2c1dd32ce132d32b Reviewed-on: https://webrtc-review.googlesource.com/99121 Reviewed-by: Karl Wiberg Commit-Queue: Ivo Creusen Cr-Commit-Position: refs/heads/master@{#24672} --- api/test/neteq_simulator.cc | 1 - api/test/neteq_simulator.h | 1 - 2 files changed, 2 deletions(-) diff --git a/api/test/neteq_simulator.cc b/api/test/neteq_simulator.cc index 2933d10628..980db96d32 100644 --- a/api/test/neteq_simulator.cc +++ b/api/test/neteq_simulator.cc @@ -20,7 +20,6 @@ NetEqSimulator::SimulationStepResult::~SimulationStepResult() = default; NetEqSimulator::NetEqState::NetEqState() = default; NetEqSimulator::NetEqState::NetEqState(const NetEqState& other) = default; -NetEqSimulator::NetEqState::NetEqState(NetEqState&& other) = default; NetEqSimulator::NetEqState::~NetEqState() = default; } // namespace test diff --git a/api/test/neteq_simulator.h b/api/test/neteq_simulator.h index d7dbb1ec20..ab6db9c84c 100644 --- a/api/test/neteq_simulator.h +++ b/api/test/neteq_simulator.h @@ -42,7 +42,6 @@ class NetEqSimulator { struct NetEqState { NetEqState(); NetEqState(const NetEqState& other); - NetEqState(NetEqState&& other); ~NetEqState(); // The sum of the packet buffer and sync buffer delay. int current_delay_ms = 0;