summaryrefslogtreecommitdiff
path: root/libsqlitepp/sqlite-command.cpp
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.cpp
parentenum class BulkUpdates (diff)
downloadlibdbpp-sqlite-1.4.7.tar.bz2
libdbpp-sqlite-1.4.7.tar.xz
libdbpp-sqlite-1.4.7.zip
Lots of pass by value and perfect forwarding optimisationsHEADlibdbpp-sqlite-1.4.7main
Diffstat (limited to 'libsqlitepp/sqlite-command.cpp')
-rw-r--r--libsqlitepp/sqlite-command.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libsqlitepp/sqlite-command.cpp b/libsqlitepp/sqlite-command.cpp
index a789269..7f5e137 100644
--- a/libsqlitepp/sqlite-command.cpp
+++ b/libsqlitepp/sqlite-command.cpp
@@ -74,7 +74,7 @@ SQLite::Command::bindParamS(unsigned int n, const Glib::ustring & s)
return bindParamS(n, std::string_view(s.raw()));
}
void
-SQLite::Command::bindParamS(unsigned int n, const std::string_view & s)
+SQLite::Command::bindParamS(unsigned int n, const std::string_view s)
{
if (sqlite3_bind_text(stmt, static_cast<int>(n + 1), s.data(), static_cast<int>(s.length()), SQLITE_STATIC)
!= SQLITE_OK) {
@@ -87,12 +87,12 @@ SQLite::Command::bindParamB(unsigned int, bool)
throw DB::ParameterTypeNotSupported();
}
void
-SQLite::Command::bindParamT(unsigned int, const boost::posix_time::time_duration &)
+SQLite::Command::bindParamT(unsigned int, const boost::posix_time::time_duration)
{
throw DB::ParameterTypeNotSupported();
}
void
-SQLite::Command::bindParamT(unsigned int, const boost::posix_time::ptime &)
+SQLite::Command::bindParamT(unsigned int, const boost::posix_time::ptime)
{
throw DB::ParameterTypeNotSupported();
}