| 112 | } |
| 113 | |
| 114 | size_t CircularBuffer::NextPosition(size_t offset) const |
| 115 | { |
| 116 | return offset == m_capacity ? 0 : offset + 1; |
| 117 | } |
| 118 | |
| 119 | const char* CircularBuffer::ReadPointer() const |
| 120 | { |
nothing calls this directly
no outgoing calls
no test coverage detected