diff options
Diffstat (limited to 'compat/mutex.hpp')
-rw-r--r-- | compat/mutex.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compat/mutex.hpp b/compat/mutex.hpp index 37e6802b..e142fd0b 100644 --- a/compat/mutex.hpp +++ b/compat/mutex.hpp @@ -17,7 +17,7 @@ public: mutex(const mutex& datum); explicit mutex(RecursionMode m); - QMutex* operator&() const; - operator QMutex*() const; - QMutex* operator->() const; + QMutex* operator&() const noexcept; + explicit operator QMutex*() const noexcept; + QMutex* operator->() const noexcept; }; |