summaryrefslogtreecommitdiff
path: root/libodbcpp/odbc-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
commit704dd8c7ecedb68161c52329e22141877143ff13 (patch)
tree0f803a65439b03fc66f523d3d311ed842d66e716 /libodbcpp/odbc-command.h
parentenum class BulkUpdates (diff)
downloadlibdbpp-odbc-704dd8c7ecedb68161c52329e22141877143ff13.tar.bz2
libdbpp-odbc-704dd8c7ecedb68161c52329e22141877143ff13.tar.xz
libdbpp-odbc-704dd8c7ecedb68161c52329e22141877143ff13.zip
Lots of pass by value and perfect forwarding optimisationsHEADlibdbpp-odbc-1.4.7main
Diffstat (limited to 'libodbcpp/odbc-command.h')
-rw-r--r--libodbcpp/odbc-command.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libodbcpp/odbc-command.h b/libodbcpp/odbc-command.h
index cb9fc77..ac6cb40 100644
--- a/libodbcpp/odbc-command.h
+++ b/libodbcpp/odbc-command.h
@@ -33,10 +33,10 @@ namespace ODBC {
void bindParamF(unsigned int i, float val) override;
void bindParamS(unsigned int i, const Glib::ustring &) override;
- void bindParamS(unsigned int i, const std::string_view &) override;
+ void bindParamS(unsigned int i, const std::string_view) override;
- void bindParamT(unsigned int i, const boost::posix_time::time_duration &) override;
- void bindParamT(unsigned int i, const boost::posix_time::ptime &) override;
+ void bindParamT(unsigned int i, const boost::posix_time::time_duration) override;
+ void bindParamT(unsigned int i, const boost::posix_time::ptime) override;
void bindNull(unsigned int i) override;