2022-10-09 05:13:17 +00:00
|
|
|
#ifndef _ALLOCATORCOMMON
|
|
|
|
#define _ALLOCATORCOMMON
|
2022-09-20 04:35:24 +00:00
|
|
|
|
|
|
|
static const int kPointerSize = sizeof(void*);
|
|
|
|
static const int kPointerBits = kPointerSize * 8;
|
|
|
|
|
2022-10-09 05:13:17 +00:00
|
|
|
#endif // _ALLOCATORCOMMON
|