diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-03-17 19:45:15 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-03-17 19:45:15 +0000 |
commit | aae2742b9dbc2a5908459372d75e11a0fdec5cb5 (patch) | |
tree | 254282fe9de0e7fec31a2ddeb48fb54115187d60 /libmysqlpp/my-command.h | |
parent | enum class BulkUpdates (diff) | |
download | libdbpp-mysql-aae2742b9dbc2a5908459372d75e11a0fdec5cb5.tar.bz2 libdbpp-mysql-aae2742b9dbc2a5908459372d75e11a0fdec5cb5.tar.xz libdbpp-mysql-aae2742b9dbc2a5908459372d75e11a0fdec5cb5.zip |
Lots of pass by value and perfect forwarding optimisations
Diffstat (limited to 'libmysqlpp/my-command.h')
-rw-r--r-- | libmysqlpp/my-command.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libmysqlpp/my-command.h b/libmysqlpp/my-command.h index 5fbf2ef..94e8643 100644 --- a/libmysqlpp/my-command.h +++ b/libmysqlpp/my-command.h @@ -34,10 +34,10 @@ namespace MySQL { 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; |