mirror of
https://github.com/matrix-construct/construct
synced 2024-11-25 16:22:35 +01:00
ircd::ctx: Relax member access.
This commit is contained in:
parent
28cc60a909
commit
628b194151
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ namespace ircd::ctx
|
|||
// additional contexts are queued. This can be used with std::
|
||||
// locking concepts.
|
||||
//
|
||||
class ircd::ctx::mutex
|
||||
struct ircd::ctx::mutex
|
||||
{
|
||||
dock q;
|
||||
bool m;
|
||||
|
|
|
@ -16,7 +16,7 @@ namespace ircd::ctx
|
|||
class shared_mutex;
|
||||
}
|
||||
|
||||
class ircd::ctx::shared_mutex
|
||||
struct ircd::ctx::shared_mutex
|
||||
{
|
||||
dock q;
|
||||
ssize_t s;
|
||||
|
|
Loading…
Reference in a new issue