mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 16:52:10 +02:00
Fix warning
This commit is contained in:
parent
2b85634a21
commit
697f0c443c
1 changed files with 1 additions and 1 deletions
|
@ -487,7 +487,7 @@ void AssetsBackupHandler::computeServerStateDifference(const AssetUtils::Mapping
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_numRestoreOperations = _assetsLeftToUpload.size() + _mappingsLeftToSet.size();
|
_numRestoreOperations = (int)_assetsLeftToUpload.size() + (int)_mappingsLeftToSet.size();
|
||||||
if (!_mappingsLeftToDelete.empty()) {
|
if (!_mappingsLeftToDelete.empty()) {
|
||||||
++_numRestoreOperations;
|
++_numRestoreOperations;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue