Fix for msvc

This commit is contained in:
Jeremy 2023-10-06 01:23:46 -04:00
parent 23b0b57d08
commit bda3e2b169
No known key found for this signature in database
GPG Key ID: 19AA8270105E8EB4

View File

@ -334,7 +334,7 @@ namespace detail {
return static_cast<unsigned long long>(t);
}
template<typename T>
unsigned long long to_uintptr(T t) {
uintptr_t to_uintptr(T t) {
return static_cast<uintptr_t>(t);
}