| 114 | } |
| 115 | |
| 116 | void Next() |
| 117 | { |
| 118 | this->C = static_cast<char>(this->Input.get()); |
| 119 | if (this->Input.bad()) { |
| 120 | this->ErrorExit("Unexpected end of file."); |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | void ErrorExit(std::string const& message) |
| 125 | { |
no test coverage detected