diff options
| author | bunnei <bunneidev@gmail.com> | 2018-04-15 15:13:02 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-15 15:13:02 -0400 |
| commit | b8825fbf10c3122309313a959a93b20baa94ec2f (patch) | |
| tree | c7e6223749099a7ae145cb1a925d6a71c16c169a /src/core/file_sys/filesystem.h | |
| parent | b60834ac41ea3fcff26cf19cd08f2dbe3f3bda58 (diff) | |
| parent | bddad50dd400b31849fbd9486637fa9a2522cf58 (diff) | |
Merge pull request #335 from bunnei/delete-file
fsp_srv: Implement DeleteFile.
Diffstat (limited to 'src/core/file_sys/filesystem.h')
| -rw-r--r-- | src/core/file_sys/filesystem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/filesystem.h b/src/core/file_sys/filesystem.h index 399427ca2..beefcfdb2 100644 --- a/src/core/file_sys/filesystem.h +++ b/src/core/file_sys/filesystem.h @@ -97,7 +97,7 @@ public: * @param path Path relative to the archive * @return Result of the operation */ - virtual ResultCode DeleteFile(const Path& path) const = 0; + virtual ResultCode DeleteFile(const std::string& path) const = 0; /** * Create a directory specified by its path |
