mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-03-03 10:58:34 -06:00
Jenkins compile fix
This commit is contained in:
@@ -57,6 +57,10 @@ HttpSynchronization::HttpSynchronization(
|
||||
const std::vector<std::string>& synchronizationRepositories
|
||||
)
|
||||
: openspace::ResourceSynchronization(dict)
|
||||
, _nTotalBytesKnown(false)
|
||||
, _nTotalBytes(0)
|
||||
, _nSynchronizedBytes(0)
|
||||
, _shouldCancel(false)
|
||||
, _synchronizationRoot(synchronizationRoot)
|
||||
, _synchronizationRepositories(synchronizationRepositories)
|
||||
{
|
||||
|
||||
@@ -59,11 +59,11 @@ private:
|
||||
bool hasSyncFile();
|
||||
void createSyncFile();
|
||||
|
||||
std::atomic_bool _nTotalBytesKnown = false;
|
||||
std::atomic_size_t _nTotalBytes = 0;
|
||||
std::atomic_size_t _nSynchronizedBytes = 0;
|
||||
std::atomic_bool _nTotalBytesKnown;
|
||||
std::atomic_size_t _nTotalBytes;
|
||||
std::atomic_size_t _nSynchronizedBytes;
|
||||
|
||||
std::atomic_bool _shouldCancel = false;
|
||||
std::atomic_bool _shouldCancel;
|
||||
std::string _identifier;
|
||||
int _version;
|
||||
std::string _synchronizationRoot;
|
||||
|
||||
Reference in New Issue
Block a user