mirror of
https://github.com/matrix-construct/construct
synced 2024-11-17 15:30:52 +01:00
ircd::ctx: Minor ctx object semantic elaboration.
This commit is contained in:
parent
e586e22007
commit
2a7cb42c98
1 changed files with 3 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue