aboutsummaryrefslogtreecommitdiffstats
path: root/src/thread/Cond.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/Cond.hxx')
-rw-r--r--src/thread/Cond.hxx4
1 files changed, 2 insertions, 2 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