Sqlite: Fix warnings

- use of uninitialized value
- unused local typedef

Change-Id: I60d6c3a9a04d9f603a102439582c9e55d85a191f
Reviewed-by: Marco Bubke <marco.bubke@qt.io>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
This commit is contained in:
Christian Kandeler
2021-06-24 10:55:02 +02:00
parent b1837036b3
commit 627dd6681b
2 changed files with 1 additions and 3 deletions

View File

@@ -213,7 +213,7 @@ public:
auto value(const QueryTypes &...queryValues)
{
Resetter resetter{this};
ResultType resultValue;
ResultType resultValue{};
bindValues(queryValues...);