1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-02 16:38:41 +00:00

Remove unused function in ReliablePacketBuffer

This commit is contained in:
sfan5 2019-08-15 20:47:32 +02:00
parent 428a4c86e3
commit 13b22e2afb
2 changed files with 1 additions and 9 deletions

View file

@ -252,13 +252,12 @@ public:
void print();
bool empty();
bool containsPacket(u16 seqnum);
RPBSearchResult notFound();
u32 size();
private:
RPBSearchResult findPacket(u16 seqnum);
RPBSearchResult findPacket(u16 seqnum); // does not perform locking
std::list<BufferedPacket> m_list;