mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-03-09 23:08:49 -05:00
Adapt to new auto coding style
This commit is contained in:
@@ -156,12 +156,11 @@ void UrlSynchronization::start() {
|
||||
}
|
||||
std::filesystem::path destination = directory() / (_filename + TempSuffix);
|
||||
|
||||
std::unique_ptr<HttpFileDownload> download =
|
||||
std::make_unique<HttpFileDownload>(
|
||||
url,
|
||||
destination,
|
||||
HttpFileDownload::Overwrite::Yes
|
||||
);
|
||||
auto download = std::make_unique<HttpFileDownload>(
|
||||
url,
|
||||
destination,
|
||||
HttpFileDownload::Overwrite::Yes
|
||||
);
|
||||
HttpFileDownload* dl = download.get();
|
||||
|
||||
downloads.push_back(std::move(download));
|
||||
|
||||
Reference in New Issue
Block a user