| 162 | } |
| 163 | |
| 164 | void CircularBuffer::Write(char value) |
| 165 | { |
| 166 | //std::cerr << " " << m_writeOffset << " <= " << unsigned int(unsigned char(value)) << "\n"; |
| 167 | *WritePointer() = value; |
| 168 | IncreaseWritePointer(); |
| 169 | } |
| 170 | |
| 171 | void CircularBuffer::DumpStats() |
| 172 | { |
nothing calls this directly
no outgoing calls
no test coverage detected