| 243 | Stream::~Stream() { delete[] m_pPrefetched; } |
| 244 | |
| 245 | char Stream::peek() const { |
| 246 | if (m_readahead.empty()) { |
| 247 | return Stream::eof(); |
| 248 | } |
| 249 | |
| 250 | return m_readahead[0]; |
| 251 | } |
| 252 | |
| 253 | Stream::operator bool() const { |
| 254 | return m_input.good() || |
no test coverage detected