1#ifndef THP_TYPES_INC
2#define THP_TYPES_INC
3
4#include <cstddef>
5
6#ifndef INT64_MAX
7#include <cstdint>
8#endif
9
10template <typename T>
11struct THPTypeInfo {};
12
13#endif
14