ASMixer: Removed unused variable in ASBufferQueue

The variable m_playing_queued_buffer_id was defined but not used.
This commit is contained in:
Till Mayer 2019-10-19 18:05:26 +02:00 committed by Andreas Kling
parent 025d3b49ab
commit 8bb919d1cc
Notes: sideshowbarker 2024-07-19 11:38:08 +09:00

View file

@ -45,7 +45,6 @@ private:
RefPtr<ABuffer> m_current;
Queue<NonnullRefPtr<ABuffer>> m_queue;
int m_position { 0 };
int m_playing_queued_buffer_id { -1 };
WeakPtr<ASClientConnection> m_client;
};