| 28 | return std::unexpected(Error(ErrorCode::kDeviceNotSupported)); |
| 29 | } |
| 30 | auto Close(File*) -> Expected<void> override { return {}; } |
| 31 | auto ReadDir(File*, DirEntry*, size_t) -> Expected<size_t> override { |
| 32 | return std::unexpected(Error(ErrorCode::kDeviceNotSupported)); |
| 33 | } |
nothing calls this directly
no outgoing calls
no test coverage detected