fix order of member initialization in PacketList

This commit is contained in:
Stephen Birarda 2015-08-25 11:24:26 -07:00
parent 9ff7bfd0b5
commit 61507bde09

View file

@ -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() {