| 40 | class PosixWritableFile : public WritableFile { |
| 41 | public: |
| 42 | PosixWritableFile(const std::string& fname, FILE* f) |
| 43 | : filename_(fname), file_(f) {} |
| 44 | |
| 45 | ~PosixWritableFile() { |
| 46 | if (file_ != NULL) { |
nothing calls this directly
no outgoing calls
no test coverage detected