summaryrefslogtreecommitdiff
path: root/libsqlitepp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2021-10-17 14:56:44 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2021-10-17 14:56:44 +0100
commit40e8b64273e91e6df2aca06746fd8f5c8df6878d (patch)
tree4c6bd13fea94a0f4d1d607cbd7ac57d546b15a4e /libsqlitepp
parentTidy up IWYU (diff)
downloadlibdbpp-sqlite-40e8b64273e91e6df2aca06746fd8f5c8df6878d.tar.bz2
libdbpp-sqlite-40e8b64273e91e6df2aca06746fd8f5c8df6878d.tar.xz
libdbpp-sqlite-40e8b64273e91e6df2aca06746fd8f5c8df6878d.zip
Fix up warnings from latest clang-tidy
Diffstat (limited to 'libsqlitepp')
-rw-r--r--libsqlitepp/sqlite-connection.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/libsqlitepp/sqlite-connection.cpp b/libsqlitepp/sqlite-connection.cpp
index 346c6db..1621217 100644
--- a/libsqlitepp/sqlite-connection.cpp
+++ b/libsqlitepp/sqlite-connection.cpp
@@ -8,6 +8,7 @@
NAMEDFACTORY("sqlite", SQLite::Connection, DB::ConnectionFactory)
+// NOLINTNEXTLINE(bugprone-throw-keyword-missing)
SQLite::ConnectionError::ConnectionError(sqlite3 * db) : SQLite::Error(db) { }
SQLite::Connection::Connection(const std::string & str) : db(nullptr)