Commit e4ed7528 authored by gabime's avatar gabime

fixed class name

parent 8932b77d
......@@ -19,11 +19,11 @@ namespace spdlog {
namespace details {
template<typename T>
class mpmc_bounded_queue
class mpmc_blocking_queue
{
public:
using item_type = T;
explicit mpmc_bounded_queue(size_t max_items)
explicit mpmc_blocking_queue(size_t max_items)
: max_items_(max_items)
{
}
......
......@@ -83,7 +83,7 @@ namespace spdlog {
{
public:
using item_type = async_msg;
using q_type = details::mpmc_bounded_queue<item_type>;
using q_type = details::mpmc_blocking_queue<item_type>;
using clock_type = std::chrono::steady_clock;
thread_pool(size_t q_size_bytes, size_t threads_n)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment