summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/thread/qmutex/tst_qmutex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/thread/qmutex/tst_qmutex.cpp')
-rw-r--r--tests/auto/corelib/thread/qmutex/tst_qmutex.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/auto/corelib/thread/qmutex/tst_qmutex.cpp b/tests/auto/corelib/thread/qmutex/tst_qmutex.cpp
index 71a310bcfd..08a203bcfa 100644
--- a/tests/auto/corelib/thread/qmutex/tst_qmutex.cpp
+++ b/tests/auto/corelib/thread/qmutex/tst_qmutex.cpp
@@ -54,11 +54,6 @@
class tst_QMutex : public QObject
{
Q_OBJECT
-
-public:
- tst_QMutex();
- virtual ~tst_QMutex();
-
private slots:
void tryLock();
void lock_unlock_locked_tryLock();
@@ -70,15 +65,6 @@ private slots:
static const int iterations = 100;
-tst_QMutex::tst_QMutex()
-
-{
-}
-
-tst_QMutex::~tst_QMutex()
-{
-}
-
QAtomicInt lockCount(0);
QMutex normalMutex, recursiveMutex(QMutex::Recursive);
QSemaphore testsTurn;