mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-15 16:35:45 +08:00
Added const to circular_q empty() and full()
This commit is contained in:
parent
b88c784634
commit
6883267996
@ -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_;
|
||||
|
Loading…
Reference in New Issue
Block a user