LibIPC: Use InputMemoryStream instead of BufferStream.

This commit is contained in:
asynts 2020-09-20 13:00:54 +02:00 committed by Andreas Kling
commit c879ecf509
Notes: sideshowbarker 2024-07-19 02:18:21 +09:00
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 {