mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 22:17:38 +03:00
MultiDiskAdaptor: Use std::unique_ptr for DiskWriterEntry and DiskWriter
MultiFileAllocationIterator is also rewritten so that it does not requre copying DiskWriterEntry objects.
This commit is contained in:
parent
e823fe8bb5
commit
f000fd0cab
12 changed files with 236 additions and 275 deletions
|
@ -34,13 +34,14 @@
|
|||
/* copyright --> */
|
||||
#include "DefaultDiskWriterFactory.h"
|
||||
#include "DefaultDiskWriter.h"
|
||||
#include "a2functional.h"
|
||||
|
||||
namespace aria2 {
|
||||
|
||||
std::shared_ptr<DiskWriter> DefaultDiskWriterFactory::newDiskWriter
|
||||
std::unique_ptr<DiskWriter> DefaultDiskWriterFactory::newDiskWriter
|
||||
(const std::string& filename)
|
||||
{
|
||||
return std::shared_ptr<DiskWriter>(new DefaultDiskWriter(filename));
|
||||
return make_unique<DefaultDiskWriter>(filename);
|
||||
}
|
||||
|
||||
} // namespace aria2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue