mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:27:35 +00:00
AK: Declare LogStream::operator<<(const LogStream&, long) (#2155)
LogStream::operator<<(const LogStream&, long) was implemented in AK/LogStream.cpp but the declaration was missing from the header.
This commit is contained in:
parent
b931771d24
commit
cc01933840
1 changed files with 1 additions and 0 deletions
|
@ -115,6 +115,7 @@ const LogStream& operator<<(const LogStream&, const FlyString&);
|
|||
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&, long);
|
||||
const LogStream& operator<<(const LogStream&, unsigned);
|
||||
const LogStream& operator<<(const LogStream&, long long);
|
||||
const LogStream& operator<<(const LogStream&, unsigned long);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue