diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-07-20 13:29:42 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-07-20 13:29:42 +0200 |
commit | 53d47a9a5a8130e5af1215bbb2c2fb663a81dc30 (patch) | |
tree | 64f7a2b517b604006ed127badb42a1859b43dee0 /modules/io_codec/c++/io_peer.hpp | |
parent | 5f946d3dba74a7d3bc12bc75c4e7e7ed58805d58 (diff) |
wip
Diffstat (limited to 'modules/io_codec/c++/io_peer.hpp')
-rw-r--r-- | modules/io_codec/c++/io_peer.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/io_codec/c++/io_peer.hpp b/modules/io_codec/c++/io_peer.hpp index ab26f61..91c6488 100644 --- a/modules/io_codec/c++/io_peer.hpp +++ b/modules/io_codec/c++/io_peer.hpp @@ -62,7 +62,8 @@ private: size_t space() const override { return 0; } size_t queued() const override { return 0; } - + + error_or<void> swap(conveyor<data<Outgoing, Encoding>> &&conveyor) noexcept override { return make_error<err::not_implemented>();} private: streaming_io_peer<Incoming, Outgoing, Encoding, BufferT> &peer_; |