| 279 | LocalFileSystem::~LocalFileSystem() = default; |
| 280 | |
| 281 | Result<std::string> LocalFileSystem::NormalizePath(std::string path) { |
| 282 | return DoNormalizePath(std::move(path)); |
| 283 | } |
| 284 | |
| 285 | Result<std::string> LocalFileSystem::PathFromUri(const std::string& uri_string) const { |
| 286 | #ifdef _WIN32 |