mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-08 12:19:37 +03:00
AK: Handle LogStream operator<<(size_t)
This has been an annoyingly missing feature for some time.
This commit is contained in:
parent
91fc6a056b
commit
1726c17d0d
Notes:
sideshowbarker
2024-07-19 10:54:47 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/1726c17d0d4
@ -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);
|
||||
}
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user