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:
parent
0b51a10a44
commit
049828290f
1 changed files with 4 additions and 4 deletions
|
@ -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)}
|
||||
|
|
Loading…
Reference in a new issue