0
0
Fork 0
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:
Jason Volk 2020-02-24 16:44:15 -08:00
parent 28cc60a909
commit 628b194151
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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;