1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:47: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

@ -43,7 +43,7 @@ inline bool decode(Decoder&, T&)
class Decoder {
public:
explicit Decoder(BufferStream& stream)
explicit Decoder(InputMemoryStream& stream)
: m_stream(stream)
{
}
@ -101,7 +101,7 @@ public:
}
private:
BufferStream& m_stream;
InputMemoryStream& m_stream;
};
}