Sqlite: Reset is noexcept

Change-Id: I4d702619e17118681a46dbc904038031a6f98353
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Qt CI Patch Build Bot <ci_patchbuild_bot@qt.io>
Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
Marco Bubke
2023-08-27 19:48:30 +02:00
parent fc99f914df
commit a20839f8c3

View File

@@ -444,7 +444,7 @@ private:
: statement{std::exchange(other.statement, nullptr)} : statement{std::exchange(other.statement, nullptr)}
{} {}
void reset() void reset() noexcept
{ {
if (statement) if (statement)
statement->reset(); statement->reset();