mirror of
https://github.com/overte-org/overte.git
synced 2025-04-19 15:43:50 +02:00
fix type in Packet constructor
This commit is contained in:
parent
1a1c2d6bbe
commit
c846efb203
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ public:
|
|||
template<typename T> qint64 writePrimitive(const T& data);
|
||||
|
||||
protected:
|
||||
Packet(PacketType::Value type, int64_t size);
|
||||
Packet(PacketType::Value type, qint64 size);
|
||||
Packet(std::unique_ptr<char> data, qint64 size, const HifiSockAddr& senderSockAddr);
|
||||
Packet(const Packet& other);
|
||||
Packet& operator=(const Packet& other);
|
||||
|
|
Loading…
Reference in a new issue