这对rebind_alloc的使用是错误的吗?

时间:2018-03-04 09:39:20

标签: c++ templates boost boost-asio

在boost.asio的官方示例中,我找到以下代码:

template <class Func, class Alloc>
void post(Func f, const Alloc& a) const
{
  auto p(std::allocate_shared<item<Func>>(
    typename std::allocator_traits<
    Alloc>::template rebind_alloc<char>(a),
    priority_, std::move(f)));
  std::lock_guard<std::mutex> lock(context_.mutex_);
  context_.queue_.push(p);
  context_.condition_.notify_one();
}

是否应将rebind_alloc<char>修改为rebind_alloc<item<Func>>

0 个答案:

没有答案