mirror of
https://github.com/matrix-construct/construct
synced 2024-11-17 23:40:57 +01:00
ircd::ctx::pool: Use queue push() instead of emplace().
This commit is contained in:
parent
5a32754937
commit
0e7a55d3b3
1 changed files with 1 additions and 1 deletions
|
@ -1030,7 +1030,7 @@ noexcept
|
||||||
void
|
void
|
||||||
ircd::ctx::pool::operator()(closure closure)
|
ircd::ctx::pool::operator()(closure closure)
|
||||||
{
|
{
|
||||||
q.emplace(std::move(closure));
|
q.push(std::move(closure));
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in a new issue