瀏覽代碼

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

The fallible encoders are now the only option to encode values.
Timothy Flynn 2 年之前
父節點
當前提交
4819ebe831
共有 1 個文件被更改,包括 0 次插入7 次删除
  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>
     ErrorOr<void> encode(T const& value);