diff options
author | Max Kellermann <max@musicpd.org> | 2017-01-03 07:11:57 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2017-01-03 07:11:57 +0100 |
commit | 2e182e84c35c73f8d5b4f135ffa3550b7e70f66f (patch) | |
tree | 806ec01525f834132c46e6392714900ec75eada2 /src/thread | |
parent | a42021655c3218c64272b648438197247ec7f6a9 (diff) |
thread/Mutex: remove ScopeLock, use std::lock_guard directly
Diffstat (limited to 'src/thread')
-rw-r--r-- | src/thread/Mutex.hxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/thread/Mutex.hxx b/src/thread/Mutex.hxx index 35e0125d8..627c66103 100644 --- a/src/thread/Mutex.hxx +++ b/src/thread/Mutex.hxx @@ -44,8 +44,6 @@ class Mutex : public PosixMutex {}; #endif -using ScopeLock = std::lock_guard<Mutex>; - /** * Within the scope of an instance, this class will keep a #Mutex * unlocked. |