PowerUtils: allow constructing null pointers with xpointer

This commit is contained in:
Hyper 2024-11-24 09:25:22 +00:00
parent 62e3188a81
commit 4357a55eff

View File

@ -140,9 +140,12 @@ struct xpointer
{
be<uint32_t> ptr;
xpointer() : ptr(0)
{
}
xpointer(T* ptr) : ptr((uint32_t)ptr)
{
}
T* get() const