From c4932bcbae735b465b426190fc673685a34229ec Mon Sep 17 00:00:00 2001 From: Alexander Bock Date: Fri, 29 Dec 2017 00:05:26 +0100 Subject: [PATCH] Jenkins compile fix --- modules/sync/syncs/httpsynchronization.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/sync/syncs/httpsynchronization.cpp b/modules/sync/syncs/httpsynchronization.cpp index 25b8b5c2b9..546e8316c9 100644 --- a/modules/sync/syncs/httpsynchronization.cpp +++ b/modules/sync/syncs/httpsynchronization.cpp @@ -196,8 +196,8 @@ bool HttpSynchronization::trySyncFromUrl(std::string listUrl) { std::unordered_map fileSizes; std::mutex fileSizeMutex; - std::atomic_bool startedAllDownloads = false; - std::atomic_size_t nDownloads = 0; + std::atomic_bool startedAllDownloads(false); + std::atomic_size_t nDownloads(0); std::vector> downloads;