Commit 853f8571 authored by Dominik Charousset's avatar Dominik Charousset

Add missing constructor

parent 36f6fb8c
......@@ -36,6 +36,14 @@ public:
static constexpr size_t max_message_length = INT32_MAX;
// -- constructors, destructors, and assignment operators --------------------
template <class... Ts>
explicit length_prefix_framing(Ts&&... xs)
: upper_layer_(std::forward<Ts>(xs)...) {
// nop
}
// -- interface for the upper layer ------------------------------------------
template <class LowerLayer>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment