0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-29 20:28:52 +02:00

ircd::ctx: Minor ctx object semantic elaboration.

This commit is contained in:
Jason Volk 2018-04-19 21:43:17 -07:00
parent e586e22007
commit 2a7cb42c98

View file

@ -53,8 +53,10 @@ struct ircd::ctx::ctx
const context::flags &flags = (context::flags)0,
boost::asio::io_service *const &ios = ircd::ios);
ctx(ctx &&) noexcept = delete;
ctx(ctx &&) = delete;
ctx(const ctx &) = delete;
ctx &operator=(ctx &&) = delete;
ctx &operator=(const ctx &) = delete;
};
/// Instance list linkage for the list of all ctx instances.