connection info in connection pool progress

This commit is contained in:
Sascha Kühl
2025-10-02 16:12:21 +02:00
parent 12905e3df3
commit 5490e67ecf
6 changed files with 15 additions and 11 deletions
+2 -1
View File
@@ -62,7 +62,8 @@ connection &connection::operator=(const connection &x) {
connection::connection( connection&& x ) noexcept
: connection_info_(std::move(x.connection_info_))
, connection_(std::move(x.connection_))
, logger_(std::move(x.logger_)) {}
, logger_(std::move(x.logger_))
{}
connection & connection::operator=(connection &&x) noexcept {
connection_info_ = std::move(x.connection_info_);