0
0
Fork 0
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:
Jason Volk 2018-09-18 21:56:36 -07:00
parent 5a32754937
commit 0e7a55d3b3

View file

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