summaryrefslogtreecommitdiff
path: root/libsqlitepp/sqlite-command.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2022-03-17 19:45:15 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2022-03-17 19:45:15 +0000
commit8f00ea37def4d0f3d36d77ec643a9abd193161b2 (patch)
tree8e14de5c204705755ec035e0dfe2ff26b34e0751 /libsqlitepp/sqlite-command.h
parentenum class BulkUpdates (diff)
downloadlibdbpp-sqlite-main.tar.bz2
libdbpp-sqlite-main.tar.xz
libdbpp-sqlite-main.zip
Lots of pass by value and perfect forwarding optimisationsHEADlibdbpp-sqlite-1.4.7main
Diffstat (limited to 'libsqlitepp/sqlite-command.h')
-rw-r--r--libsqlitepp/sqlite-command.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libsqlitepp/sqlite-command.h b/libsqlitepp/sqlite-command.h
index 2bf9cc1..ca5d6f9 100644
--- a/libsqlitepp/sqlite-command.h
+++ b/libsqlitepp/sqlite-command.h
@@ -28,10 +28,10 @@ namespace SQLite {
void bindParamF(unsigned int, float) override;
void bindParamS(unsigned int, const Glib::ustring &) override;
- void bindParamS(unsigned int, const std::string_view &) override;
+ void bindParamS(unsigned int, const std::string_view) override;
- void bindParamT(unsigned int, const boost::posix_time::time_duration &) override;
- void bindParamT(unsigned int, const boost::posix_time::ptime &) override;
+ void bindParamT(unsigned int, const boost::posix_time::time_duration) override;
+ void bindParamT(unsigned int, const boost::posix_time::ptime) override;
void bindNull(unsigned int) override;