thread/Mutex: use using instead of making it a derived class

Prepare the transition to std::mutex.
This commit is contained in:
Max Kellermann
2019-05-07 19:23:01 +02:00
parent 1b5c1f75a4
commit 0a0cc66e8f
19 changed files with 21 additions and 25 deletions
+1 -2
View File
@@ -25,12 +25,11 @@
#ifndef MPD_AIFF_HXX
#define MPD_AIFF_HXX
#include <mutex>
#include "thread/Mutex.hxx"
#include <stddef.h>
class InputStream;
class Mutex;
/**
* Seeks the AIFF file to the ID3 chunk.
+1 -2
View File
@@ -25,11 +25,10 @@
#ifndef MPD_RIFF_HXX
#define MPD_RIFF_HXX
#include <mutex>
#include "thread/Mutex.hxx"
#include <stddef.h>
class Mutex;
class InputStream;
/**