mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +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
|
@ -45,9 +45,9 @@ void DHTPingReplyMessageTest::testGetBencodedMessage()
|
|||
dict.put("t", transactionID);
|
||||
dict.put("v", "A200");
|
||||
dict.put("y", "r");
|
||||
std::shared_ptr<Dict> rDict = Dict::g();
|
||||
auto rDict = Dict::g();
|
||||
rDict->put("id", String::g(id, DHT_ID_LENGTH));
|
||||
dict.put("r", rDict);
|
||||
dict.put("r", std::move(rDict));
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL(bencode2::encode(&dict), msgbody);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue