From d4348d5afc43d73af331efc14b716e5ec840387c Mon Sep 17 00:00:00 2001 From: ogis-shinki Date: Tue, 18 May 2021 14:27:59 +0900 Subject: [PATCH] Fixed ignoring return value error. --- src/redisclient/impl/redisasyncclient.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/redisclient/impl/redisasyncclient.cpp b/src/redisclient/impl/redisasyncclient.cpp index e09137a..d71b991 100644 --- a/src/redisclient/impl/redisasyncclient.cpp +++ b/src/redisclient/impl/redisasyncclient.cpp @@ -31,7 +31,6 @@ void RedisAsyncClient::connect(const boost::asio::ip::tcp::endpoint &endpoint, if( pimpl->state == State::Closed ) { pimpl->redisParser = RedisParser(); - std::move(pimpl->socket); } if( pimpl->state == State::Unconnected || pimpl->state == State::Closed )