| 1905 | } |
| 1906 | |
| 1907 | char increment() { |
| 1908 | char c; |
| 1909 | if ((c = buffer[bufferPos++]) == LF) |
| 1910 | line++; |
| 1911 | return c; |
| 1912 | } |
| 1913 | |
| 1914 | public: |
| 1915 | BufferedFileInputStreamReader(std::FILE *file, const std::string &name) : file(file), name(name), line(1) { |
nothing calls this directly
no outgoing calls
no test coverage detected