Fix circular_q::size()

pull/1307/head
Václav Šmilauer 6 years ago
parent 042045b998
commit daef0a2374

@ -77,11 +77,11 @@ public:
{
if (tail_ > head_)
{
return (tail_ - head_) % max_items_;
return tail_ - head_;
}
else
{
return max_items_ - (head_ - tail_ ) % max_items_;
return max_items_ - (head_ - tail_ );
}
}

Loading…
Cancel
Save