summaryrefslogtreecommitdiffstats
path: root/src/corelib/thread
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2014-06-26 12:54:33 +0200
committerOlivier Goffart <ogoffart@woboq.com>2014-06-26 14:21:35 +0200
commit6303307692c4ebdc3836f44da917d6b83ab3d4cc (patch)
treea52ff1e94ef314d6a290e83a5ae3a3defcab12a4 /src/corelib/thread
parent321d6dda759841a16a4e21d7e3bbbfc89504bee4 (diff)
Add a comment stating QMutex::isRecursive should be made const in Qt6
Change-Id: I452b0764790112c59af77bc8d95f403ff37cbc4a Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@digia.com>
Diffstat (limited to 'src/corelib/thread')
-rw-r--r--src/corelib/thread/qmutex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/thread/qmutex.h b/src/corelib/thread/qmutex.h
index 333865014b..011555f904 100644
--- a/src/corelib/thread/qmutex.h
+++ b/src/corelib/thread/qmutex.h
@@ -77,7 +77,7 @@ public:
return fastTryLock();
}
- bool isRecursive();
+ bool isRecursive(); //### Qt6: mark const
private:
inline bool fastTryLock() Q_DECL_NOTHROW {