From 704dd8c7ecedb68161c52329e22141877143ff13 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Thu, 17 Mar 2022 19:45:15 +0000 Subject: Lots of pass by value and perfect forwarding optimisations --- libodbcpp/odbc-command.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libodbcpp/odbc-command.h') 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; -- cgit v1.2.3