mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:17:35 +00:00
AK: Add support for 64-bit size_t
This commit is contained in:
parent
ce56770875
commit
dc93ed4368
4 changed files with 18 additions and 13 deletions
|
@ -62,6 +62,11 @@ const LogStream& operator<<(const LogStream& stream, u64 value)
|
|||
return stream << String::number(value);
|
||||
}
|
||||
|
||||
const LogStream& operator<<(const LogStream& stream, unsigned long value)
|
||||
{
|
||||
return stream << String::number(value);
|
||||
}
|
||||
|
||||
const LogStream& operator<<(const LogStream& stream, const void* value)
|
||||
{
|
||||
return stream << String::format("%p", value);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue