mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-08-05 10:55:36 +00:00
8 lines
176 B
C++
8 lines
176 B
C++
#ifndef _ALLOCATORCOMMON
|
|
#define _ALLOCATORCOMMON
|
|
|
|
static const int kPointerSize = sizeof(void*);
|
|
static const int kPointerBits = kPointerSize * 8;
|
|
|
|
#endif // _ALLOCATORCOMMON
|