diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-09-18 14:25:28 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-09-18 14:25:28 +0100 |
commit | 7e5c360a8c8eee8ebe8b1c18e49be5b4af8dac57 (patch) | |
tree | 398c50f5d2cf6001b31ea8628299b8eb90b2c543 /libsqlitepp/sqlite-command.h | |
parent | Modern jam lto (diff) | |
download | libdbpp-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.h | 3 |
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; }; |