| 71 | } |
| 72 | |
| 73 | size_t CircularBuffer::Available() const |
| 74 | { |
| 75 | return m_writeOffset < m_readOffset ? m_readOffset - m_writeOffset - 1 : m_capacity - m_writeOffset + m_readOffset; |
| 76 | } |
| 77 | |
| 78 | size_t CircularBuffer::Size() const |
| 79 | { |
nothing calls this directly
no outgoing calls
no test coverage detected