From 0e7a55d3b3e8fdf53f297012caab1c059a6f7717 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Tue, 18 Sep 2018 21:56:36 -0700 Subject: [PATCH] ircd::ctx::pool: Use queue push() instead of emplace(). --- ircd/ctx.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircd/ctx.cc b/ircd/ctx.cc index f6efadb25..6bef03e1e 100644 --- a/ircd/ctx.cc +++ b/ircd/ctx.cc @@ -1030,7 +1030,7 @@ noexcept void ircd::ctx::pool::operator()(closure closure) { - q.emplace(std::move(closure)); + q.push(std::move(closure)); } void