mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 21:47:37 +03:00
DownloadContext::attrs_ now holds std::unique_ptr
DownloadContext::getAttribute() returns a raw pointer.
This commit is contained in:
parent
1a299c4d7c
commit
bef6236da8
29 changed files with 146 additions and 157 deletions
|
@ -70,9 +70,11 @@ public:
|
|||
};
|
||||
|
||||
dctx_.reset(new DownloadContext());
|
||||
std::shared_ptr<TorrentAttribute> torrentAttrs(new TorrentAttribute());
|
||||
torrentAttrs->infoHash = std::string(vbegin(infoHash), vend(infoHash));
|
||||
dctx_->setAttribute(CTX_ATTR_BT, torrentAttrs);
|
||||
{
|
||||
auto torrentAttrs = make_unique<TorrentAttribute>();
|
||||
torrentAttrs->infoHash = std::string(vbegin(infoHash), vend(infoHash));
|
||||
dctx_->setAttribute(CTX_ATTR_BT, std::move(torrentAttrs));
|
||||
}
|
||||
const std::shared_ptr<FileEntry> fileEntries[] = {
|
||||
std::shared_ptr<FileEntry>(new FileEntry("/path/to/file",totalLength,0))
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue