| 19 | std::size_t read_count; |
| 20 | |
| 21 | custom_reader(FILE* f_) |
| 22 | : f(f_), buffer(), current_size(0), read_count(0) { |
| 23 | } |
| 24 | |
| 25 | bool read() { |
| 26 | std::cout << "custom read: read #" << ++read_count |
nothing calls this directly
no outgoing calls
no test coverage detected