mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 17:58:45 +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);
|
template<typename T> qint64 writePrimitive(const T& data);
|
||||||
|
|
||||||
protected:
|
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(std::unique_ptr<char> data, qint64 size, const HifiSockAddr& senderSockAddr);
|
||||||
Packet(const Packet& other);
|
Packet(const Packet& other);
|
||||||
Packet& operator=(const Packet& other);
|
Packet& operator=(const Packet& other);
|
||||||
|
|
Loading…
Reference in a new issue