summaryrefslogtreecommitdiffstats
path: root/src/corelib/thread/qmutex.h
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2020-08-31 13:46:39 +0200
committerEdward Welbourne <edward.welbourne@qt.io>2020-09-10 11:24:19 +0200
commita8caae37ef21e06512364f513e930f2bafd543e8 (patch)
tree752654dc3780764d4ea8b32287d5cac7bd40f862 /src/corelib/thread/qmutex.h
parent6e8985e3576a4439bd66c0767f9912d1e124682c (diff)
Remove redundant non-const QMutex::isRecursive()
As directed by ### Qt 6 comment. Task-number: QTBUG-85700 Change-Id: Iae4179b017840efe4902de2b1529cf7ec0606865 Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/corelib/thread/qmutex.h')
-rw-r--r--src/corelib/thread/qmutex.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/corelib/thread/qmutex.h b/src/corelib/thread/qmutex.h
index 8ac6088c129..c1c87100e69 100644
--- a/src/corelib/thread/qmutex.h
+++ b/src/corelib/thread/qmutex.h
@@ -94,8 +94,6 @@ public:
// Lockable concept
bool try_lock() noexcept { return tryLock(); }
-
- bool isRecursive() noexcept; //### Qt6: remove me
bool isRecursive() const noexcept;
private: