aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/dependencyparametersscriptvalue.cpp
diff options
context:
space:
mode:
authorDenis Shienkov <denis.shienkov@gmail.com>2019-02-26 14:38:54 +0300
committerDenis Shienkov <denis.shienkov@gmail.com>2019-02-26 15:52:26 +0000
commit4fd17d627106fde01284075038e15cc0680611bc (patch)
tree25c5b7e8ec774d362ad97e86d0ecd1d8527fbac5 /src/lib/corelib/buildgraph/dependencyparametersscriptvalue.cpp
parent0b8f0b771080e51a59664782ced6b3a1cc5111ca (diff)
Return initializer list where it is possible
This fixes this clang-tidy warning: warning: avoid repeating the return type from the declaration; use a braced initializer list instead [modernize-return-braced-init-list] Change-Id: I421e1e47462fe0e97788672684d47943af7df850 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/lib/corelib/buildgraph/dependencyparametersscriptvalue.cpp')
-rw-r--r--src/lib/corelib/buildgraph/dependencyparametersscriptvalue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/corelib/buildgraph/dependencyparametersscriptvalue.cpp b/src/lib/corelib/buildgraph/dependencyparametersscriptvalue.cpp
index bc62c901c..f1bf8db13 100644
--- a/src/lib/corelib/buildgraph/dependencyparametersscriptvalue.cpp
+++ b/src/lib/corelib/buildgraph/dependencyparametersscriptvalue.cpp
@@ -72,7 +72,7 @@ static QScriptValue toScriptValue(ScriptEngine *engine, const QString &productNa
static QScriptValue toScriptValue(ScriptEngine *scriptEngine, const QString &productName,
const QVariantMap &v, const QString &depName)
{
- return toScriptValue(scriptEngine, productName, v, depName, QualifiedId());
+ return toScriptValue(scriptEngine, productName, v, depName, {});
}
QScriptValue dependencyParametersValue(const QString &productName, const QString &dependencyName,