diff options
| author | mailwl <mailwl@gmail.com> | 2018-04-24 10:56:05 +0300 |
|---|---|---|
| committer | mailwl <mailwl@gmail.com> | 2018-04-24 10:56:05 +0300 |
| commit | a0179e5ca5bc54491f03ff60d2f971197eb03e88 (patch) | |
| tree | 99ba0561c6fe429169a40e76a70db7b3f99a71ee /src/core/file_sys/disk_filesystem.h | |
| parent | 07dc0bbf3e10c030a32f6853de31642162ce988d (diff) | |
Service/FS: implement IFileSystem::RenameFile
Diffstat (limited to 'src/core/file_sys/disk_filesystem.h')
| -rw-r--r-- | src/core/file_sys/disk_filesystem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/disk_filesystem.h b/src/core/file_sys/disk_filesystem.h index 8f9e1145a..591e39fda 100644 --- a/src/core/file_sys/disk_filesystem.h +++ b/src/core/file_sys/disk_filesystem.h @@ -26,7 +26,7 @@ public: ResultVal<std::unique_ptr<StorageBackend>> OpenFile(const std::string& path, Mode mode) const override; ResultCode DeleteFile(const std::string& path) const override; - ResultCode RenameFile(const Path& src_path, const Path& dest_path) const override; + ResultCode RenameFile(const std::string& src_path, const std::string& dest_path) const override; ResultCode DeleteDirectory(const Path& path) const override; ResultCode DeleteDirectoryRecursively(const Path& path) const override; ResultCode CreateFile(const std::string& path, u64 size) const override; |
