| 239 | // reset current position and EOF for peekNextLine() |
| 240 | template<typename T> |
| 241 | void ASStreamIterator<T>::peekReset() |
| 242 | { |
| 243 | assert(peekStart != 0); |
| 244 | inStream->clear(); |
| 245 | inStream->seekg(peekStart); |
| 246 | peekStart = 0; |
| 247 | } |
| 248 | |
| 249 | // save the last input line after input has reached EOF |
| 250 | template<typename T> |
no outgoing calls
no test coverage detected