initialized missing member

This commit is contained in:
Sascha Kühl 2025-09-28 22:26:57 +02:00
parent d7758e827d
commit b40fcf0d67
1 changed files with 1 additions and 0 deletions

View File

@ -9,6 +9,7 @@ namespace matador::sql {
statement::statement(const std::shared_ptr<statement_proxy>& proxy, logger_ptr logger)
: statement_proxy_(proxy)
, bindings_(proxy->create_binder())
, logger_(std::move(logger)){}
statement::statement(statement&& x) noexcept