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

ircd:Ⓜ️:v1: Remove any opts constructors preventing aggregate initialization.

This commit is contained in:
Jason Volk 2019-03-05 21:14:57 -08:00
parent 094ae6e997
commit 506531790b
2 changed files with 0 additions and 12 deletions

View file

@ -43,12 +43,6 @@ struct ircd::m::v1::query::opts
server::in in;
const struct server::request::opts *sopts {nullptr};
bool dynamic {false};
opts(const net::hostport &remote)
:remote{remote}
{}
opts() = default;
};
struct ircd::m::v1::query::profile

View file

@ -40,10 +40,4 @@ struct ircd::m::v1::user::opts
server::in in;
const struct server::request::opts *sopts {nullptr};
bool dynamic {false};
opts(const net::hostport &remote)
:remote{remote}
{}
opts() = default;
};