mirror of
https://github.com/gabime/spdlog.git
synced 2025-09-29 01:29:35 +08:00
typo fix
This commit is contained in:
@@ -77,11 +77,11 @@ public:
|
|||||||
{
|
{
|
||||||
if (tail_ > head_)
|
if (tail_ > head_)
|
||||||
{
|
{
|
||||||
return (tail_ - head_) % max_items;
|
return (tail_ - head_) % max_items_;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return max_items - (head_ - tail_ ) % max_items;
|
return max_items_ - (head_ - tail_ ) % max_items_;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user