mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 08:17:34 +00:00
AK: Add LogStream operator<< overloads for float and double
This commit is contained in:
parent
5c780c9ef7
commit
3bbc2c7300
2 changed files with 16 additions and 0 deletions
|
@ -120,6 +120,11 @@ const LogStream& operator<<(const LogStream&, long long);
|
|||
const LogStream& operator<<(const LogStream&, unsigned long);
|
||||
const LogStream& operator<<(const LogStream&, unsigned long long);
|
||||
|
||||
#if !defined(KERNEL) && !defined(BOOTSTRAPPER)
|
||||
const LogStream& operator<<(const LogStream&, double);
|
||||
const LogStream& operator<<(const LogStream&, float);
|
||||
#endif
|
||||
|
||||
const LogStream& operator<<(const LogStream&, const void*);
|
||||
|
||||
inline const LogStream& operator<<(const LogStream& stream, char value)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue