mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
Move instead of copy
This commit is contained in:
parent
f0015d2175
commit
c2109a5aca
1 changed files with 2 additions and 2 deletions
|
@ -196,8 +196,8 @@ void DHTRoutingTableDeserializer::deserialize(const std::string& filename)
|
|||
|
||||
nodes.push_back(node);
|
||||
}
|
||||
localNode_ = localNode;
|
||||
nodes_ = nodes;
|
||||
localNode_ = std::move(localNode);
|
||||
nodes_ = std::move(nodes);
|
||||
A2_LOG_INFO("DHT routing table was loaded successfully");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue