mirror of
https://github.com/gabime/spdlog.git
synced 2025-09-29 01:29:35 +08:00
Fixed circular_q size impl and added tests
This commit is contained in:
@@ -82,7 +82,7 @@ public:
|
||||
}
|
||||
else
|
||||
{
|
||||
return max_items_ - 1 - (head_ - tail_);
|
||||
return max_items_ - (head_ - tail_);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user