mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:38:12 +00:00
AK: Provide a ptr_hash(const void*) overload
This commit is contained in:
parent
61340c12d6
commit
00e744c263
1 changed files with 5 additions and 0 deletions
|
@ -58,3 +58,8 @@ inline unsigned ptr_hash(uintptr_t ptr)
|
||||||
else
|
else
|
||||||
return int_hash((u32)ptr);
|
return int_hash((u32)ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline unsigned ptr_hash(const void* ptr)
|
||||||
|
{
|
||||||
|
return ptr_hash((uintptr_t)(ptr));
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue