mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 05:27:38 +03:00
Require -std=c++11 and use std::shared_ptr instead of SharedHandle
This commit is contained in:
parent
126a4bde61
commit
07d270c87e
709 changed files with 6305 additions and 6878 deletions
|
@ -25,10 +25,10 @@ void Bencode2Test::testEncode()
|
|||
Dict dict;
|
||||
dict["name"] = String::g("aria2");
|
||||
dict["loc"] = Integer::g(80000);
|
||||
SharedHandle<List> files = List::g();
|
||||
std::shared_ptr<List> files = List::g();
|
||||
files->append(String::g("aria2c"));
|
||||
dict["files"] = files;
|
||||
SharedHandle<Dict> attrs = Dict::g();
|
||||
std::shared_ptr<Dict> attrs = Dict::g();
|
||||
attrs->put("license", String::g("GPL"));
|
||||
dict["attrs"] = attrs;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue