mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-05-02 00:19:35 +00:00
20 lines
334 B
C++
20 lines
334 B
C++
#include "WordSize.h"
|
|
|
|
#include <cassert>
|
|
|
|
unsigned GetPointerSizeForWordSize(const WordSize wordSize)
|
|
{
|
|
switch (wordSize)
|
|
{
|
|
case WordSize::BITS_32:
|
|
return sizeof(uint32_t);
|
|
|
|
case WordSize::BITS_64:
|
|
return sizeof(uint64_t);
|
|
|
|
default:
|
|
assert(false);
|
|
return sizeof(uint32_t);
|
|
}
|
|
}
|