clang: fix -Wpessimizing-move warning

This commit is contained in:
selsta 2021-04-27 06:28:24 +02:00
parent 0a1ddc2eff
commit 3cc4428d45
No known key found for this signature in database
GPG Key ID: 2EA0A99A8B07AE5E
1 changed files with 2 additions and 1 deletions

View File

@ -320,7 +320,8 @@ TEST(test_epee_connection, test_lifetime)
connection_ptr conn;
{
lock_guard_t guard(shared_conn->lock);
conn = std::move(shared_conn->conn.lock());
conn = shared_conn->conn.lock();
shared_conn->conn.reset();
}
if (conn)
conn->cancel();