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
|
@ -23,14 +23,14 @@ void Bencode2Test::testEncode()
|
|||
{
|
||||
{
|
||||
Dict dict;
|
||||
dict["name"] = String::g("aria2");
|
||||
dict["loc"] = Integer::g(80000);
|
||||
std::shared_ptr<List> files = List::g();
|
||||
dict.put("name", String::g("aria2"));
|
||||
dict.put("loc", Integer::g(80000));
|
||||
auto files = List::g();
|
||||
files->append(String::g("aria2c"));
|
||||
dict["files"] = files;
|
||||
std::shared_ptr<Dict> attrs = Dict::g();
|
||||
dict.put("files", std::move(files));
|
||||
auto attrs = Dict::g();
|
||||
attrs->put("license", String::g("GPL"));
|
||||
dict["attrs"] = attrs;
|
||||
dict.put("attrs", std::move(attrs));
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL(std::string("d"
|
||||
"5:attrsd7:license3:GPLe"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue