0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-14 00:34:18 +01:00

ircd::net::hostport: Add missing default port argument for constructor.

This commit is contained in:
Jason Volk 2020-03-24 11:55:17 -07:00
parent 256e5ed960
commit f092b4214b

View file

@ -63,7 +63,7 @@ struct ircd::net::hostport
explicit operator bool() const;
bool operator!() const;
hostport(const string_view &host, const string_view &service, const uint16_t &port);
hostport(const string_view &host, const string_view &service, const uint16_t &port = 0);
hostport(const string_view &host, const uint16_t &port);
hostport(const string_view &amalgam);
hostport(const string_view &amalgam, verbatim_t);