0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-29 20:28:52 +02:00

ircd::ctx::pool: Use queue push() instead of emplace().

This commit is contained in:
Jason Volk 2018-09-18 21:56:36 -07:00
parent 5a32754937
commit 0e7a55d3b3

View file

@ -1030,7 +1030,7 @@ noexcept
void
ircd::ctx::pool::operator()(closure closure)
{
q.emplace(std::move(closure));
q.push(std::move(closure));
}
void