summaryrefslogtreecommitdiff
path: root/libsqlitepp/sqlite-command.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2021-09-18 14:25:28 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2021-09-18 14:25:28 +0100
commit7e5c360a8c8eee8ebe8b1c18e49be5b4af8dac57 (patch)
tree398c50f5d2cf6001b31ea8628299b8eb90b2c543 /libsqlitepp/sqlite-command.h
parentModern jam lto (diff)
downloadlibdbpp-sqlite-7e5c360a8c8eee8ebe8b1c18e49be5b4af8dac57.tar.bz2
libdbpp-sqlite-7e5c360a8c8eee8ebe8b1c18e49be5b4af8dac57.tar.xz
libdbpp-sqlite-7e5c360a8c8eee8ebe8b1c18e49be5b4af8dac57.zip
Add JT recommended warnings
Diffstat (limited to 'libsqlitepp/sqlite-command.h')
-rw-r--r--libsqlitepp/sqlite-command.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libsqlitepp/sqlite-command.h b/libsqlitepp/sqlite-command.h
index abf02ee..1bf93c4 100644
--- a/libsqlitepp/sqlite-command.h
+++ b/libsqlitepp/sqlite-command.h
@@ -32,6 +32,9 @@ namespace SQLite {
void bindNull(unsigned int) override;
protected:
+ template<typename V, typename BinderFunction>
+ void bindWith(unsigned int n, const V & v, BinderFunction binder) const;
+
const Connection * c;
sqlite3_stmt * stmt;
};