summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAndreas Buhr <andreas.buhr@qt.io>2021-03-05 10:22:52 +0100
committerQt CI Bot <qt_ci_bot@qt-project.org>2021-03-05 18:09:24 +0000
commit63b40b962efcdaee2baf5ceef371352157594a80 (patch)
tree34ff64fc2adca7aa1a873033d216aa89990066d5 /tests
parenta757d7123bb6a4391765299ae709fdf730777c4c (diff)
parent230f41f670a37511de3da9f4c3429079fe8ad372 (diff)
Merge "Fix warning about virtual override"
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/corelib/thread/qthreadpool/tst_qthreadpool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/corelib/thread/qthreadpool/tst_qthreadpool.cpp b/tests/auto/corelib/thread/qthreadpool/tst_qthreadpool.cpp
index 5960ac20a3..3c50c6315b 100644
--- a/tests/auto/corelib/thread/qthreadpool/tst_qthreadpool.cpp
+++ b/tests/auto/corelib/thread/qthreadpool/tst_qthreadpool.cpp
@@ -404,7 +404,7 @@ void tst_QThreadPool::expiryTimeoutRace() // QTBUG-3786
class ExceptionTask : public QRunnable
{
public:
- void run()
+ void run() override
{
throw new int;
}