11 lines
165 B
C++
11 lines
165 B
C++
//#define _FASTHEAP_
|
|
#if defined(_FASTHEAP_)
|
|
#include <common/heapnew.hpp>
|
|
|
|
Heap &globalHeap(void)
|
|
{
|
|
static Heap sGlobalHeap(16384);
|
|
return sGlobalHeap;
|
|
}
|
|
#endif
|