mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-22 17:19:15 +01:00
9b5caa190e
Mostly for Linux
9 lines
299 B
C++
9 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); }
|