diff --git a/include/spdlog/details/circular_q.h b/include/spdlog/details/circular_q.h index 72d9bf65..709e0c24 100644 --- a/include/spdlog/details/circular_q.h +++ b/include/spdlog/details/circular_q.h @@ -71,12 +71,12 @@ public: } } - bool empty() + bool empty() const { return tail_ == head_; } - bool full() + bool full() const { // head is ahead of the tail by 1 return ((tail_ + 1) % max_items_) == head_;