| 9 | } |
| 10 | |
| 11 | void BufferedOutputStream::provide(int n) { |
| 12 | buffer.incrementReadPointer(n); |
| 13 | } |
| 14 | |
| 15 | void BufferedOutputStream::consume(bool blocking) { |
| 16 | buffer.incrementWritePointer(1,blocking); |
nothing calls this directly
no test coverage detected