mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
DownloadEngine: Use std::unique_ptr for eventPoll_
This commit is contained in:
parent
f83b0fcfa3
commit
00e27e4fa4
6 changed files with 32 additions and 26 deletions
|
@ -89,7 +89,7 @@ public:
|
|||
option_->put(PREF_PIECE_LENGTH, "1048576");
|
||||
option_->put(PREF_MAX_DOWNLOAD_RESULT, "10");
|
||||
File(option_->get(PREF_DIR)).mkdirs();
|
||||
e_ = make_unique<DownloadEngine>(std::make_shared<SelectEventPoll>());
|
||||
e_ = make_unique<DownloadEngine>(make_unique<SelectEventPoll>());
|
||||
e_->setOption(option_.get());
|
||||
e_->setRequestGroupMan
|
||||
(make_unique<RequestGroupMan>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue