Fixed long long unsigned int

This commit is contained in:
WolverinDEV 2021-02-12 14:51:43 +01:00
parent e58b123f4a
commit d9e2462848

View File

@ -52,7 +52,7 @@ namespace ts {
CONVERTER_PRIMITIVE(int64_t);
CONVERTER_PRIMITIVE(uint64_t);
#if __x86_64__
#if UINTPTR_WIDTH >= 64
CONVERTER_PRIMITIVE(long_long_unsigned_int_t);
#endif
typedef std::string std__string;