diff options
author | Timothy Flynn <trflynn89@pm.me> | 2023-01-02 00:01:23 -0500 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-01-04 11:49:15 +0100 |
commit | 4819ebe831f092a1ed9f63a888e55be83c99fdfa (patch) | |
tree | ec1eacc2142ecafacbd0fd8fa881fe3feca623e0 /Userland/Libraries/LibIPC/Encoder.h | |
parent | 8b7b03b3697cc07ea5d96b6eaa92ae93468368bf (diff) | |
download | serenity-4819ebe831f092a1ed9f63a888e55be83c99fdfa.zip |
LibIPC: Remove now-unused stream operator from IPC::Encoder
The fallible encoders are now the only option to encode values.
Diffstat (limited to 'Userland/Libraries/LibIPC/Encoder.h')
-rw-r--r-- | Userland/Libraries/LibIPC/Encoder.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Userland/Libraries/LibIPC/Encoder.h b/Userland/Libraries/LibIPC/Encoder.h index e2cffc858e..334c2b14c8 100644 --- a/Userland/Libraries/LibIPC/Encoder.h +++ b/Userland/Libraries/LibIPC/Encoder.h @@ -32,13 +32,6 @@ public: } template<typename T> - Encoder& operator<<(T const& value) - { - (void)encode(value); - return *this; - } - - template<typename T> ErrorOr<void> encode(T const& value); ErrorOr<void> extend_capacity(size_t capacity) |