From e81df263f4123a39fe6d4d50fb21f47dd242e796 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Thu, 20 Dec 2018 18:23:14 +0100 Subject: remove const correctness violations This is possibly related to a livelock where several threads do const removal in their respective code paths. Use the `mutable' specifier for the mutexes and spline's cached data. Now using the `mutable' specifier, get rid of in compat/mutex. --- compat/copyable-mutex.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'compat/copyable-mutex.cpp') diff --git a/compat/copyable-mutex.cpp b/compat/copyable-mutex.cpp index dde84c83..17b5aa34 100644 --- a/compat/copyable-mutex.cpp +++ b/compat/copyable-mutex.cpp @@ -1,18 +1,19 @@ #include "copyable-mutex.hpp" +#include -mutex& mutex::operator=(const mutex& datum) +mutex& mutex::operator=(const mutex& rhs) { - inner.emplace(datum->isRecursive() ? QMutex::Recursive : QMutex::NonRecursive); + if (rhs->isRecursive() != inner.isRecursive()) + std::abort(); + return *this; } -mutex::mutex(const mutex& datum) +mutex::mutex(const mutex& datum) : mutex{datum.inner.isRecursive() ? Recursive : NonRecursive} { - *this = datum; } -mutex::mutex(mutex::mode m) : - inner { std::in_place, static_cast(int(m)) } +mutex::mutex(RecursionMode m) : inner{m} { } @@ -21,13 +22,12 @@ QMutex* mutex::operator&() const return *this; } -QMutex* mutex::operator->() const +mutex::operator QMutex*() const { - return *this; + return &inner; } -mutex::operator QMutex*() const +QMutex* mutex::operator->() const { - return const_cast(&inner.value()); + return *this; } - -- cgit v1.2.3