summaryrefslogtreecommitdiff
path: root/Servers
diff options
context:
space:
mode:
authorTill Mayer <till.mayer@web.de>2019-10-19 18:05:26 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-10-19 20:05:13 +0200
commit8bb919d1cc9bab052eb1764d78069cfdf41c97c9 (patch)
treed5bdc0af2672629fd70a7a8996dd11c31258c40e /Servers
parent025d3b49abe7a02a9addbff041303b1b48ec7912 (diff)
downloadserenity-8bb919d1cc9bab052eb1764d78069cfdf41c97c9.zip
ASMixer: Removed unused variable in ASBufferQueue
The variable m_playing_queued_buffer_id was defined but not used.
Diffstat (limited to 'Servers')
-rw-r--r--Servers/AudioServer/ASMixer.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Servers/AudioServer/ASMixer.h b/Servers/AudioServer/ASMixer.h
index 9286ae3753..7a6b032715 100644
--- a/Servers/AudioServer/ASMixer.h
+++ b/Servers/AudioServer/ASMixer.h
@@ -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;
};