fix type in Packet constructor

This commit is contained in:
Stephen Birarda 2015-07-17 16:24:25 -07:00
parent 1a1c2d6bbe
commit c846efb203

View file

@ -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);