summaryrefslogtreecommitdiff
path: root/modules/io_codec
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2024-07-20 19:37:39 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2024-07-20 19:37:39 +0200
commit35119a9d3750bf786e841c25a46cd59ea2117462 (patch)
treef44b0dd575008b2bda31fa1969897596b9211e68 /modules/io_codec
parentea00856f9480abca0aa4510e09770d843176ef07 (diff)
wip
Diffstat (limited to 'modules/io_codec')
-rw-r--r--modules/io_codec/c++/io_peer.tmpl.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/io_codec/c++/io_peer.tmpl.hpp b/modules/io_codec/c++/io_peer.tmpl.hpp
index 2babb1c..d9dfe04 100644
--- a/modules/io_codec/c++/io_peer.tmpl.hpp
+++ b/modules/io_codec/c++/io_peer.tmpl.hpp
@@ -1,8 +1,8 @@
namespace saw {
-template <typename Incoming, typename Outgoing, typename Encoding,
+template <typename Incoming, typename Outgoing, typename TransportEncoding, typename ContentEncoding
typename BufferT>
-streaming_io_peer<Incoming, Outgoing, Encoding,
+streaming_io_peer<Incoming, Outgoing, TransportEncoding, ContentEncoding,
BufferT>::
streaming_io_peer(
own<conveyor_feeder<data<Incoming, Encoding>>> feed,
@@ -10,7 +10,7 @@ streaming_io_peer<Incoming, Outgoing, Encoding,
: streaming_io_peer{std::move(feed), std::move(str), {}, {}, {}, {}} {}
template <typename Incoming, typename Outgoing, typename TransportEncoding, ContentEncoding, typename BufferT>
-streaming_io_peer<Incoming, Outgoing, Encoding,
+streaming_io_peer<Incoming, Outgoing, TransportEncoding, ContentEncoding,
BufferT>::
streaming_io_peer(
own<conveyor_feeder<data<Incoming, Encoding>>> feed,