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
commit 4819ebe831
Notes: sideshowbarker 2024-07-17 05:18:58 +09:00

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);