mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 21:47:37 +03:00
Use std::unique_ptr for ValueBase object hierarchy
This commit is contained in:
parent
7a57ecc5f8
commit
7c06b903f3
77 changed files with 1242 additions and 1265 deletions
|
@ -81,7 +81,7 @@ void DHTGetPeersMessageTest::testGetBencodedMessage()
|
|||
auto aDict = Dict::g();
|
||||
aDict->put("id", String::g(localNode_->getID(), DHT_ID_LENGTH));
|
||||
aDict->put("info_hash", String::g(infoHash, DHT_ID_LENGTH));
|
||||
dict.put("a", aDict);
|
||||
dict.put("a", std::move(aDict));
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL(util::percentEncode(bencode2::encode(&dict)),
|
||||
util::percentEncode(msgbody));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue