diff options
| author | Subv <subv2112@gmail.com> | 2018-03-21 09:36:26 -0500 |
|---|---|---|
| committer | Subv <subv2112@gmail.com> | 2018-03-21 09:55:59 -0500 |
| commit | eff3f60b73343365ad65638f55591965df6f7e25 (patch) | |
| tree | 9b2d61666ff0f516b06d3a6cfda144afb5fb72e7 /src/core/file_sys/disk_filesystem.h | |
| parent | 0485ee499f9e00fb2ec1926876d6e50c9b22447b (diff) | |
FS: Implemented IFileSystem::CreateDirectory.
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 72a0afedf..742d7db1a 100644 --- a/src/core/file_sys/disk_filesystem.h +++ b/src/core/file_sys/disk_filesystem.h @@ -30,7 +30,7 @@ public: ResultCode DeleteDirectory(const Path& path) const override; ResultCode DeleteDirectoryRecursively(const Path& path) const override; ResultCode CreateFile(const std::string& path, u64 size) const override; - ResultCode CreateDirectory(const Path& path) const override; + ResultCode CreateDirectory(const std::string& path) const override; ResultCode RenameDirectory(const Path& src_path, const Path& dest_path) const override; ResultVal<std::unique_ptr<DirectoryBackend>> OpenDirectory( const std::string& path) const override; |
