From a627b48d8c83d2bdd5a47ec82642be631259e761 Mon Sep 17 00:00:00 2001 From: Denes Matetelki Date: Mon, 29 Jul 2013 15:13:47 +0200 Subject: [PATCH] enum fix --- lib/cpp_utils/Mutex.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cpp_utils/Mutex.hpp b/lib/cpp_utils/Mutex.hpp index 85a5e51..dace2d9 100644 --- a/lib/cpp_utils/Mutex.hpp +++ b/lib/cpp_utils/Mutex.hpp @@ -15,7 +15,7 @@ public: Default = PTHREAD_MUTEX_DEFAULT // equals normal }; - Mutex(MutexType type = MutexType::Default); + Mutex(MutexType type = Default); ~Mutex(); MutexType getType() const { return m_type; }