Fix warning about virtual override

Change-Id: Ia9928c8ef5d1597e55f45c67c462c1e9756ee899
Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
Reviewed-by: Sona Kurazyan <sona.kurazyan@qt.io>
bb10
Andreas Buhr 2021-03-05 10:22:52 +01:00
parent bcedeb6d3d
commit 230f41f670
1 changed files with 1 additions and 1 deletions

View File

@ -404,7 +404,7 @@ void tst_QThreadPool::expiryTimeoutRace() // QTBUG-3786
class ExceptionTask : public QRunnable
{
public:
void run()
void run() override
{
throw new int;
}