| 81 | } |
| 82 | |
| 83 | bool CircularBuffer::Full() const |
| 84 | { |
| 85 | //std::cerr << "full: " << NextPosition(m_writeOffset) << " ?= " << m_readOffset << "\n" |
| 86 | return NextPosition(m_writeOffset) == m_readOffset; // actually full |
| 87 | } |
| 88 | |
| 89 | std::string CircularBuffer::ReadStringZ() |
| 90 | { |
nothing calls this directly
no outgoing calls
no test coverage detected