| 206 | using filebuf::seek; // Pull in single-arg overload |
| 207 | |
| 208 | void close() override { |
| 209 | // No need to do anything for in-memory files |
| 210 | } |
| 211 | |
| 212 | bool is_eof() const override { return mPos >= mData->capacity(); } |
| 213 | bool has_error() const override { return false; } |
no outgoing calls
no test coverage detected