mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-19 04:50:29 +00:00
Try to make PtrMap work for 32-bit compilers
This commit is contained in:
@@ -59,6 +59,11 @@ template <typename T> struct TypeIsPtrSizedInteger { enum {value = false}; };
|
||||
template <> struct TypeIsPtrSizedInteger<isize> { enum {value = true}; };
|
||||
template <> struct TypeIsPtrSizedInteger<usize> { enum {value = true}; };
|
||||
|
||||
template <typename T> struct TypeIs64BitInteger { enum {value = false}; };
|
||||
template <> struct TypeIs64BitInteger<u64> { enum {value = true}; };
|
||||
template <> struct TypeIs64BitInteger<i64> { enum {value = true}; };
|
||||
|
||||
|
||||
|
||||
#include "unicode.cpp"
|
||||
#include "array.cpp"
|
||||
|
||||
Reference in New Issue
Block a user