| 76 | } |
| 77 | |
| 78 | size_t CircularBuffer::Size() const |
| 79 | { |
| 80 | return m_writeOffset < m_readOffset ? m_capacity + 1 - m_readOffset + m_writeOffset : m_writeOffset - m_readOffset; |
| 81 | } |
| 82 | |
| 83 | bool CircularBuffer::Full() const |
| 84 | { |
nothing calls this directly
no outgoing calls
no test coverage detected