mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:17:35 +00:00
LibCore: Move LogStream::operator<< overloads into cpp files
This commit is contained in:
parent
2a41bff329
commit
3866e0d4d4
9 changed files with 54 additions and 13 deletions
|
@ -26,7 +26,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <AK/String.h>
|
||||
#include <AK/Forward.h>
|
||||
#include <time.h>
|
||||
|
||||
namespace Core {
|
||||
|
@ -58,9 +58,6 @@ private:
|
|||
unsigned m_second { 0 };
|
||||
};
|
||||
|
||||
inline const LogStream& operator<<(const LogStream& stream, const DateTime& value)
|
||||
{
|
||||
return stream << value.to_string();
|
||||
}
|
||||
const LogStream& operator<<(const LogStream&, const DateTime&);
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue