summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/thread/qsemaphore/tst_qsemaphore.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/thread/qsemaphore/tst_qsemaphore.cpp')
-rw-r--r--tests/auto/corelib/thread/qsemaphore/tst_qsemaphore.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/auto/corelib/thread/qsemaphore/tst_qsemaphore.cpp b/tests/auto/corelib/thread/qsemaphore/tst_qsemaphore.cpp
index 7c410db148..9643ee448a 100644
--- a/tests/auto/corelib/thread/qsemaphore/tst_qsemaphore.cpp
+++ b/tests/auto/corelib/thread/qsemaphore/tst_qsemaphore.cpp
@@ -39,10 +39,8 @@
**
****************************************************************************/
-
#include <QtTest/QtTest>
-
#include <qcoreapplication.h>
#include <qthread.h>
#include <qsemaphore.h>
@@ -53,11 +51,6 @@
class tst_QSemaphore : public QObject
{
Q_OBJECT
-
-public:
- tst_QSemaphore();
- ~tst_QSemaphore();
-
private slots:
void acquire();
void tryAcquire();
@@ -69,12 +62,6 @@ private slots:
static QSemaphore *semaphore = 0;
-tst_QSemaphore::tst_QSemaphore()
-{ }
-
-tst_QSemaphore::~tst_QSemaphore()
-{ }
-
class ThreadOne : public QThread
{
public: