summaryrefslogtreecommitdiffhomepage
path: root/compat/mutex.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'compat/mutex.hpp')
-rw-r--r--compat/mutex.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/compat/mutex.hpp b/compat/mutex.hpp
index e142fd0b..e4d0fee6 100644
--- a/compat/mutex.hpp
+++ b/compat/mutex.hpp
@@ -10,8 +10,8 @@ class OTR_COMPAT_EXPORT mutex
public:
using RecursionMode = QMutex::RecursionMode;
- static constexpr inline RecursionMode Recursive = RecursionMode::Recursive;
- static constexpr inline RecursionMode NonRecursive = RecursionMode::NonRecursive;
+ static constexpr RecursionMode Recursive = RecursionMode::Recursive;
+ static constexpr RecursionMode NonRecursive = RecursionMode::NonRecursive;
mutex& operator=(const mutex& datum);
mutex(const mutex& datum);