1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 12:08:14 +00:00

LibIPC: Remove now-unused stream operator from IPC::Encoder

The fallible encoders are now the only option to encode values.
This commit is contained in:
Timothy Flynn 2023-01-02 00:01:23 -05:00 committed by Andreas Kling
parent 8b7b03b369
commit 4819ebe831

View file

@ -31,13 +31,6 @@ public:
{
}
template<typename T>
Encoder& operator<<(T const& value)
{
(void)encode(value);
return *this;
}
template<typename T>
ErrorOr<void> encode(T const& value);