mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 17:39:26 +02:00
Replace NLPacketList::getSourceID() with const& return
This commit is contained in:
parent
da7c9198c5
commit
ebf112e200
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ public:
|
||||||
NLPacketList(PacketType packetType, QByteArray extendedHeader = QByteArray(), bool isReliable = false, bool isOrdered = false);
|
NLPacketList(PacketType packetType, QByteArray extendedHeader = QByteArray(), bool isReliable = false, bool isOrdered = false);
|
||||||
NLPacketList(PacketList&& packetList);
|
NLPacketList(PacketList&& packetList);
|
||||||
|
|
||||||
QUuid getSourceID() const { return _sourceID; }
|
const QUuid& getSourceID() const { return _sourceID; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
NLPacketList(const NLPacketList& other) = delete;
|
NLPacketList(const NLPacketList& other) = delete;
|
||||||
|
|
Loading…
Reference in a new issue