Browse Source

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

The fallible encoders are now the only option to encode values.
Timothy Flynn 2 years ago
parent
commit
4819ebe831
1 changed files with 0 additions and 7 deletions
  1. 0 7
      Userland/Libraries/LibIPC/Encoder.h

+ 0 - 7
Userland/Libraries/LibIPC/Encoder.h

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