Use reinterpret_cast

This commit is contained in:
gingerBill
2025-10-27 11:10:53 +00:00
parent 13f2090608
commit 6edb26dcf8

View File

@@ -13,7 +13,7 @@ enum : MapIndex { MAP_SENTINEL = ~(MapIndex)0 };
template <typename T>
struct PtrMapConstant {
static constexpr T TOMBSTONE = (T)(void *)~(uintptr)0;
static constexpr T TOMBSTONE = reinterpret_cast<T>(reinterpret_cast<void *>(~(uintptr)0));
};
template <>