| 164 | } |
| 165 | |
| 166 | Status MemmappedFileSystem::GetMatchingPaths(const string& pattern, |
| 167 | std::vector<string>* results) { |
| 168 | return errors::Unimplemented( |
| 169 | "memmapped format doesn't support GetMatchingPaths"); |
| 170 | } |
| 171 | |
| 172 | Status MemmappedFileSystem::DeleteFile(const string& filename) { |
| 173 | return errors::Unimplemented("memmapped format doesn't support DeleteFile"); |
no test coverage detected