0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-28 08:24:08 +01:00

ircd::net: Kill implicit conversion.

This commit is contained in:
Jason Volk 2018-01-08 03:03:08 -08:00
parent 54d6cbc8c1
commit 9bb927712e

View file

@ -48,9 +48,9 @@ struct ircd::net::open_opts
friend string_view common_name(const open_opts &);
open_opts() = default;
open_opts(const net::ipport &ipport);
explicit open_opts(const net::ipport &ipport);
open_opts(const net::hostport &hostport);
explicit open_opts(const net::remote &remote);
open_opts(const net::remote &remote);
/// Remote's hostname and port. This will be used for address resolution
/// if an ipport is not also provided later. The hostname will also be used