Commit b48a9f43 authored by Dominik Charousset's avatar Dominik Charousset

Remove extra semicolon

parent b0e4e4f7
...@@ -342,7 +342,7 @@ public: ...@@ -342,7 +342,7 @@ public:
stream_id sid{ctrl(), stream_id sid{ctrl(),
new_request_id(message_priority::normal).integer_value()}; new_request_id(message_priority::normal).integer_value()};
stream<type> token{sid}; stream<type> token{sid};
auto ys = std::tuple_cat(std::forward_as_tuple(token), std::move(xs));; auto ys = std::tuple_cat(std::forward_as_tuple(token), std::move(xs));
// generate new ID for the final response message and send handshake // generate new ID for the final response message and send handshake
auto res_id = new_request_id(message_priority::normal); auto res_id = new_request_id(message_priority::normal);
dest->enqueue( dest->enqueue(
......
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