AK: Handle LogStream operator<<(size_t)

This has been an annoyingly missing feature for some time.
This commit is contained in:
Andreas Kling 2019-12-09 17:45:11 +01:00
parent 91fc6a056b
commit 1726c17d0d
Notes: sideshowbarker 2024-07-19 10:54:47 +09:00
2 changed files with 22 additions and 4 deletions

View File

@ -16,12 +16,17 @@ const LogStream& operator<<(const LogStream& stream, const StringView& value)
return stream;
}
const LogStream& operator<<(const LogStream& stream, int value)
const LogStream& operator<<(const LogStream& stream, i32 value)
{
return stream << String::number(value);
}
const LogStream& operator<<(const LogStream& stream, unsigned value)
const LogStream& operator<<(const LogStream& stream, u32 value)
{
return stream << String::number(value);
}
const LogStream& operator<<(const LogStream& stream, u64 value)
{
return stream << String::number(value);
}

View File

@ -1,5 +1,6 @@
#pragma once
#include <AK/Types.h>
#include <AK/kstdio.h>
#ifdef USERLAND
@ -59,8 +60,20 @@ inline const LogStream& operator<<(const LogStream& stream, const char* value)
const LogStream& operator<<(const LogStream&, const String&);
const LogStream& operator<<(const LogStream&, const StringView&);
const LogStream& operator<<(const LogStream&, int);
const LogStream& operator<<(const LogStream&, unsigned);
const LogStream& operator<<(const LogStream&, i32);
const LogStream& operator<<(const LogStream&, u32);
const LogStream& operator<<(const LogStream&, u64);
#ifdef __serenity__
inline const LogStream& operator<<(const LogStream& stream, size_t value)
{
if constexpr (sizeof(size_t) == 4)
return stream << (u32)value;
else
return stream << (u64)value;
}
#endif
const LogStream& operator<<(const LogStream&, const void*);
inline const LogStream& operator<<(const LogStream& stream, char value)