summaryrefslogtreecommitdiff
path: root/libsqlitepp/sqlite-command.h
diff options
context:
space:
mode:
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;