mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-22 07:22:25 +00:00
Merge pull request #7690
3cc4428
clang: fix -Wpessimizing-move warning (selsta)
This commit is contained in:
commit
342f8c8b97
1 changed files with 2 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue