From 0d2f9f05d2fdf31ca21e6e5795880f98dc38821a Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Mon, 20 Mar 2023 13:57:44 -0300 Subject: TProtocol: Add (and match) `operator delete()` It's exactly the same as `TObject::operator delete()`, not sure why this was even implemented. --- include/pso/TProtocol.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include') diff --git a/include/pso/TProtocol.h b/include/pso/TProtocol.h index d19b37d..6991c67 100644 --- a/include/pso/TProtocol.h +++ b/include/pso/TProtocol.h @@ -8,6 +8,7 @@ #include #include #include +#include #include #include #include @@ -157,6 +158,8 @@ public: int m_packet_size; struct packet m_packet; struct recv_packet_handlers m_recv_handlers; +private: + static void operator delete(void *ptr) { obj_heap->heap_free(ptr); }; public: TProtocol(TObject *parent, u16 sub_version, int language, char *serial_number, char *access_key, char *password); virtual ~TProtocol(); -- cgit v1.2.3-13-gbd6f