diff options
-rw-r--r-- | libdbpp/command.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdbpp/command.h b/libdbpp/command.h index 09377a9..8e06a7c 100644 --- a/libdbpp/command.h +++ b/libdbpp/command.h @@ -105,7 +105,7 @@ namespace DB { /// Bind a parameter by type based on C++ traits to parameter i. template<typename O> - inline auto bindParam(unsigned int i, const O & o) + inline void bindParam(unsigned int i, const O & o) { if constexpr (std::is_null_pointer<O>::value) { bindNull(i); |