0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-29 04:08:54 +02:00

ircd::ctx: Use better notify member here.

This commit is contained in:
Jason Volk 2018-09-18 21:41:21 -07:00
parent be7a20d39a
commit d2fbc30d4e

View file

@ -77,9 +77,9 @@ inline void
ircd::ctx::dock::notify_all()
noexcept
{
q.for_each([](ctx &c)
q.for_each([this](ctx &c)
{
ircd::ctx::notify(c);
notify(c);
});
}