1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:17:45 +00:00

LibIPC: Use InputMemoryStream instead of BufferStream.

This commit is contained in:
asynts 2020-09-20 13:00:54 +02:00 committed by Andreas Kling
parent 7d1b22bbb1
commit c879ecf509
4 changed files with 24 additions and 27 deletions

View file

@ -32,10 +32,9 @@
namespace IPC {
template<typename T>
bool encode(BufferStream&, T&)
bool encode(Encoder&, T&)
{
ASSERT_NOT_REACHED();
return false;
}
class Encoder {