| 128 | } |
| 129 | |
| 130 | void WriteableCacheFile::Abandon() { |
| 131 | file_.reset(); |
| 132 | assert(refs_); |
| 133 | LEVELDB_LOG("Abandon cache file: %s\n", Path().c_str()); |
| 134 | cache_->ForceEvict(this); |
| 135 | --refs_; |
| 136 | } |
| 137 | } // namespace leveldb |
nothing calls this directly
no test coverage detected