Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unique_ptr #278

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/torrent/data/file_list.cc
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ FileList::create_chunk(uint64_t offset, uint32_t length, int prot) {
if (offset + length > m_torrentSize)
throw internal_error("Tried to access chunk out of range in FileList", data()->hash());

std::unique_ptr<Chunk> chunk(new Chunk);
auto chunk = std::make_unique<Chunk>();

auto itr = std::find_if(begin(), end(), [offset](File* file) { return file->is_valid_position(offset); });

Expand Down
2 changes: 1 addition & 1 deletion src/torrent/torrent.cc
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ encoding_list() {

Download
download_add(Object* object) {
std::auto_ptr<DownloadWrapper> download(new DownloadWrapper);
auto download = std::make_unique<DownloadWrapper>();

DownloadConstructor ctor;
ctor.set_download(download.get());
Expand Down