aboutsummaryrefslogtreecommitdiffstats
path: root/alc/backends
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-03-18 02:35:31 -0700
committerChris Robinson <[email protected]>2020-03-18 02:35:31 -0700
commit9f077d5f41956f2ef2fce605929d6fd1b2f26c14 (patch)
tree3e60a6eddea1cda3635abe62ee69ff639bf3522f /alc/backends
parentbf50f227b9b74b7f9a6943b3ed79c7aa6cbe2ad1 (diff)
Remove a couple unused methods
Diffstat (limited to 'alc/backends')
-rw-r--r--alc/backends/pulseaudio.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/alc/backends/pulseaudio.cpp b/alc/backends/pulseaudio.cpp
index dcce8e85..dcedc70e 100644
--- a/alc/backends/pulseaudio.cpp
+++ b/alc/backends/pulseaudio.cpp
@@ -355,8 +355,6 @@ public:
return ret;
}
- void doLock() { mMutex.lock(); }
- void doUnlock() { mMutex.unlock(); }
std::unique_lock<std::mutex> getLock() { return std::unique_lock<std::mutex>{mMutex}; }
std::condition_variable &getCondVar() noexcept { return mCondVar; }