mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Fix uninitialized boolean
This commit is contained in:
parent
f43b9ee7e8
commit
cefb8457ea
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ private:
|
|||
HifiSockAddr _assignmentServerSocket;
|
||||
bool _isShuttingDown { false };
|
||||
QTimer _keepAlivePingTimer;
|
||||
bool _requestsDomainListData;
|
||||
bool _requestsDomainListData { false };
|
||||
|
||||
mutable QReadWriteLock _ignoredSetLock;
|
||||
tbb::concurrent_unordered_set<QUuid, UUIDHasher> _ignoredNodeIDs;
|
||||
|
|
Loading…
Reference in a new issue