mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 18:26:26 +02:00
Fix Node initialization warnings
This commit is contained in:
parent
84e1a6f893
commit
3142842d5d
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,6 @@ private:
|
||||||
Node& operator=(Node otherNode);
|
Node& operator=(Node otherNode);
|
||||||
|
|
||||||
NodeType_t _type;
|
NodeType_t _type;
|
||||||
bool _isReplicated { false };
|
|
||||||
|
|
||||||
QUuid _connectionSecret;
|
QUuid _connectionSecret;
|
||||||
std::unique_ptr<NodeData> _linkedData;
|
std::unique_ptr<NodeData> _linkedData;
|
||||||
|
@ -101,6 +100,7 @@ private:
|
||||||
QMutex _mutex;
|
QMutex _mutex;
|
||||||
MovingPercentile _clockSkewMovingPercentile;
|
MovingPercentile _clockSkewMovingPercentile;
|
||||||
NodePermissions _permissions;
|
NodePermissions _permissions;
|
||||||
|
bool _isReplicated { false };
|
||||||
tbb::concurrent_unordered_set<QUuid, UUIDHasher> _ignoredNodeIDSet;
|
tbb::concurrent_unordered_set<QUuid, UUIDHasher> _ignoredNodeIDSet;
|
||||||
mutable QReadWriteLock _ignoredNodeIDSetLock;
|
mutable QReadWriteLock _ignoredNodeIDSetLock;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue