From 4985875a15b1657e917243acefce5b3fb5afeefb Mon Sep 17 00:00:00 2001 From: gabime Date: Tue, 17 Sep 2019 12:07:54 +0300 Subject: [PATCH] Renamed item_type => value_type in circular_q --- include/spdlog/details/circular_q.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/details/circular_q.h b/include/spdlog/details/circular_q.h index 94f39043..06bb3627 100644 --- a/include/spdlog/details/circular_q.h +++ b/include/spdlog/details/circular_q.h @@ -18,7 +18,7 @@ class circular_q std::vector v_; public: - using item_type = T; + using value_type = T; // empty ctor - create a disabled queue with no elements allocated at all circular_q() = default;