mirror of
https://github.com/matrix-construct/construct
synced 2024-12-03 04:02:47 +01:00
ircd::ctx: Use better namespace identifier on call.
This commit is contained in:
parent
d6d83f6498
commit
d0b0c4e23c
1 changed files with 2 additions and 2 deletions
|
@ -2750,7 +2750,7 @@ ircd::ctx::dock::wait()
|
||||||
}};
|
}};
|
||||||
|
|
||||||
q.push_back(current);
|
q.push_back(current);
|
||||||
ircd::ctx::wait();
|
this_ctx::wait();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -2772,7 +2772,7 @@ ircd::ctx::dock::wait(const predicate &pred)
|
||||||
|
|
||||||
q.push_back(current); do
|
q.push_back(current); do
|
||||||
{
|
{
|
||||||
ircd::ctx::wait();
|
this_ctx::wait();
|
||||||
}
|
}
|
||||||
while(!pred());
|
while(!pred());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue