aboutsummaryrefslogtreecommitdiffstats
path: root/src/thread
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-17 10:06:31 +0200
committerMax Kellermann <max@duempel.org>2013-10-17 10:06:31 +0200
commit7c1cf617282c591dff85df164c178198a0ce7738 (patch)
treec94cfbbeaefd9eb380ac44de7bb3c6e7c8c59ce1 /src/thread
parenteb10d08671f3c3db2049b19a9959fe8c62532f35 (diff)
downloadmpd-7c1cf617282c591dff85df164c178198a0ce7738.tar.gz
mpd-7c1cf617282c591dff85df164c178198a0ce7738.tar.xz
mpd-7c1cf617282c591dff85df164c178198a0ce7738.zip
thread/{Cond,Mutex}: use "class" instead of "typedef"
Allows forward-declaration.
Diffstat (limited to 'src/thread')
-rw-r--r--src/thread/Cond.hxx4
-rw-r--r--src/thread/Mutex.hxx5
2 files changed, 4 insertions, 5 deletions
diff --git a/src/thread/Cond.hxx b/src/thread/Cond.hxx
index bbaabddc2..ed663dc9d 100644
--- a/src/thread/Cond.hxx
+++ b/src/thread/Cond.hxx
@@ -25,12 +25,12 @@
/* mingw-w64 4.6.3 lacks a std::cond implementation */
#include "WindowsCond.hxx"
-typedef WindowsCond Cond;
+class Cond : public WindowsCond {};
#else
#include "PosixCond.hxx"
-typedef PosixCond Cond;
+class Cond : public PosixCond {};
#endif
diff --git a/src/thread/Mutex.hxx b/src/thread/Mutex.hxx
index 675af74b1..4ed48c972 100644
--- a/src/thread/Mutex.hxx
+++ b/src/thread/Mutex.hxx
@@ -25,13 +25,12 @@
/* mingw-w64 4.6.3 lacks a std::mutex implementation */
#include "CriticalSection.hxx"
-typedef CriticalSection Mutex;
+class Mutex : public CriticalSection {};
#else
#include "PosixMutex.hxx"
-
-typedef PosixMutex Mutex;
+class Mutex : public PosixMutex {};
#endif