From d4c0f91275fe70fef73b316c36abfb989dfd55b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Blot?= Date: Tue, 6 Jun 2017 16:29:28 +0200 Subject: Use C++11 mutexes only (remove compat code) (#5922) * Fix event LINT & remove default constructor/destructors * remove compat code & modernize autolock header --- src/quicktune.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/quicktune.cpp') diff --git a/src/quicktune.cpp b/src/quicktune.cpp index b0e2dc6d5..37d4933de 100644 --- a/src/quicktune.cpp +++ b/src/quicktune.cpp @@ -18,7 +18,6 @@ with this program; if not, write to the Free Software Foundation, Inc., */ #include "quicktune.h" -#include "threading/mutex.h" #include "threading/mutex_auto_lock.h" #include "util/string.h" @@ -49,12 +48,12 @@ void QuicktuneValue::relativeAdd(float amount) static std::map g_values; static std::vector g_names; -Mutex *g_mutex = NULL; +std::mutex *g_mutex = NULL; static void makeMutex() { if(!g_mutex){ - g_mutex = new Mutex(); + g_mutex = new std::mutex(); } } -- cgit v1.2.3