| 63 | } |
| 64 | |
| 65 | const byte * MessageQueue::Spy(size_t &contiguousSize) const |
| 66 | { |
| 67 | const byte *result = m_queue.Spy(contiguousSize); |
| 68 | contiguousSize = UnsignedMin(contiguousSize, MaxRetrievable()); |
| 69 | return result; |
| 70 | } |
| 71 | |
| 72 | // ************************************************************* |
| 73 |
no test coverage detected