mirror of
https://gitlab.com/shinovon/re3-symbian.git
synced 2026-05-23 01:57:21 +03:00
8 lines
299 B
C++
8 lines
299 B
C++
#include "common.h"
|
|
|
|
#include "rpworld.h"
|
|
#include "Treadable.h"
|
|
#include "Pools.h"
|
|
|
|
void *CTreadable::operator new(size_t sz) throw() { return CPools::GetTreadablePool()->New(); }
|
|
void CTreadable::operator delete(void *p, size_t sz) throw() { CPools::GetTreadablePool()->Delete((CTreadable*)p); }
|