mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 14:03:55 +02:00
made getMissingSequenceNumbers() inline
This commit is contained in:
parent
c7788b793c
commit
f76b4dc1ab
2 changed files with 1 additions and 5 deletions
|
@ -1032,7 +1032,3 @@ void OctreeSceneStats::trackIncomingOctreePacket(const QByteArray& packet,
|
|||
_incomingWastedBytes += (MAX_PACKET_SIZE - packet.size());
|
||||
}
|
||||
}
|
||||
|
||||
const QSet<OCTREE_PACKET_SEQUENCE>& OctreeSceneStats::getMissingSequenceNumbers() const {
|
||||
return _missingSequenceNumbers;
|
||||
}
|
||||
|
|
|
@ -173,7 +173,7 @@ public:
|
|||
quint32 getIncomingPossibleDuplicate() const { return _incomingPossibleDuplicate; }
|
||||
float getIncomingFlightTimeAverage() { return _incomingFlightTimeAverage.getAverage(); }
|
||||
|
||||
const QSet<OCTREE_PACKET_SEQUENCE>& getMissingSequenceNumbers() const;
|
||||
const QSet<OCTREE_PACKET_SEQUENCE>& getMissingSequenceNumbers() const { return _missingSequenceNumbers; }
|
||||
|
||||
private:
|
||||
|
||||
|
|
Loading…
Reference in a new issue