mirror of
https://github.com/lubosz/overte.git
synced 2025-08-07 19:21:16 +02:00
put back ExtendedIODevice ctor for ubuntu warning
This commit is contained in:
parent
1723f3d3d8
commit
7d8db482a3
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ public:
|
||||||
protected:
|
protected:
|
||||||
BasePacket(qint64 size);
|
BasePacket(qint64 size);
|
||||||
BasePacket(std::unique_ptr<char[]> data, qint64 size, const HifiSockAddr& senderSockAddr);
|
BasePacket(std::unique_ptr<char[]> data, qint64 size, const HifiSockAddr& senderSockAddr);
|
||||||
BasePacket(const BasePacket& other) { *this = other; }
|
BasePacket(const BasePacket& other) : ExtendedIODevice() { *this = other; }
|
||||||
BasePacket& operator=(const BasePacket& other);
|
BasePacket& operator=(const BasePacket& other);
|
||||||
BasePacket(BasePacket&& other);
|
BasePacket(BasePacket&& other);
|
||||||
BasePacket& operator=(BasePacket&& other);
|
BasePacket& operator=(BasePacket&& other);
|
||||||
|
|
Loading…
Reference in a new issue