mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-12 12:32:21 +00:00
AK: Provide a ptr_hash(const void*) overload
This commit is contained in:
parent
61340c12d6
commit
00e744c263
Notes:
sideshowbarker
2024-07-19 09:04:13 +09:00
Author: https://github.com/awesomekling
Commit: 00e744c263
1 changed files with 5 additions and 0 deletions
|
@ -58,3 +58,8 @@ inline unsigned ptr_hash(uintptr_t ptr)
|
|||
else
|
||||
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