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;