From 13f20906089ecd4b3e5f9c0d1b9605532c4c8c15 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Mon, 27 Oct 2025 11:06:07 +0000 Subject: Try to make `PtrMap` work for 32-bit compilers --- src/common.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/common.cpp') diff --git a/src/common.cpp b/src/common.cpp index 5b007bf2c..d5fc1df4b 100644 --- a/src/common.cpp +++ b/src/common.cpp @@ -59,6 +59,11 @@ template struct TypeIsPtrSizedInteger { enum {value = false}; }; template <> struct TypeIsPtrSizedInteger { enum {value = true}; }; template <> struct TypeIsPtrSizedInteger { enum {value = true}; }; +template struct TypeIs64BitInteger { enum {value = false}; }; +template <> struct TypeIs64BitInteger { enum {value = true}; }; +template <> struct TypeIs64BitInteger { enum {value = true}; }; + + #include "unicode.cpp" #include "array.cpp" -- cgit v1.2.3