0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-13 08:23:56 +01:00

ircd::server: Fix move semantics for server::in.

This commit is contained in:
Jason Volk 2019-04-10 17:55:42 -07:00
parent 0b51a10a44
commit 049828290f

View file

@ -106,8 +106,8 @@ struct ircd::server::request
const opts *opt { &opts_default };
request(const net::hostport &,
server::out,
server::in,
server::out &&,
server::in &&,
const opts *const & = nullptr);
request() = default;
@ -166,8 +166,8 @@ struct ircd::server::request::opts
inline
ircd::server::request::request(const net::hostport &hostport,
server::out out,
server::in in,
server::out &&out,
server::in &&in,
const opts *const &opt)
:tag{nullptr}
,out{std::move(out)}