1
Fork 0
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:
joshua stein 2020-01-30 17:03:58 -06:00 committed by Andreas Kling
parent ce56770875
commit dc93ed4368
4 changed files with 18 additions and 13 deletions

View file

@ -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);