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:
parent
7d1b22bbb1
commit
c879ecf509
4 changed files with 24 additions and 27 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue