bare-metal: Return initializier lists instead of ctors

Change-Id: Ifc764130ca9c20f77ae1e1549fddba41a900150a
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Denis Shienkov
2019-05-08 14:42:54 +03:00
parent 5f36cc9e22
commit f57d43045b
4 changed files with 7 additions and 7 deletions

View File

@@ -133,12 +133,12 @@ void GdbServerProvider::setResetCommands(const QString &cmds)
QString GdbServerProvider::executable() const
{
return QString();
return {};
}
QStringList GdbServerProvider::arguments() const
{
return QStringList();
return {};
}
bool GdbServerProvider::operator==(const GdbServerProvider &other) const