mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:24:00 +02:00
fix order of member initialization in PacketList
This commit is contained in:
parent
9ff7bfd0b5
commit
61507bde09
1 changed files with 3 additions and 2 deletions
|
@ -26,9 +26,10 @@ PacketList::PacketList(PacketType packetType, QByteArray extendedHeader, bool is
|
|||
}
|
||||
|
||||
PacketList::PacketList(PacketList&& other) :
|
||||
_packetType(other._packetType),
|
||||
_packets(std::move(other._packets))
|
||||
_packets(std::move(other._packets)),
|
||||
_packetType(other._packetType)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void PacketList::startSegment() {
|
||||
|
|
Loading…
Reference in a new issue