Fix: member initializer for 'm_fooBar' is redundant

warning: member initializer for 'm_isValid' is redundant
[modernize-use-default-member-init]

Change-Id: Icd521e7d77054512bc0ed6b95cf08440320b0ce0
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Alessandro Portale
2018-07-12 00:49:23 +02:00
parent 8eda99afcb
commit ad474f5fcb
9 changed files with 7 additions and 17 deletions

View File

@@ -77,8 +77,7 @@ TestRunner *TestRunner::instance()
}
TestRunner::TestRunner(QObject *parent) :
QObject(parent),
m_executingTests(false)
QObject(parent)
{
connect(&m_futureWatcher, &QFutureWatcher<TestResultPtr>::resultReadyAt,
this, [this](int index) { emit testResultReady(m_futureWatcher.resultAt(index)); });