| 17 | } |
| 18 | |
| 19 | int64_t Stream::Peek(void* buffer, size_t len){ |
| 20 | assert(!"Stream::Peek called from base class"); |
| 21 | |
| 22 | return -1; // We should not return but get the compiler to shut up |
| 23 | } |
| 24 | |
| 25 | int64_t Stream::Empty(){ |
| 26 | return 1; |
no test coverage detected