Filesystem: Return strings from GetFileName without the const qualifier

This is mostly pointless and can inhibit move construction
This commit is contained in:
Lioncash
2016-09-18 12:31:40 -04:00
parent 2c8b9d18a8
commit 144c23dead
3 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@ public:
virtual bool ExportFile(const std::string& _rFullPath, const std::string& _rExportFilename) = 0;
virtual bool ExportApploader(const std::string& _rExportFolder) const = 0;
virtual bool ExportDOL(const std::string& _rExportFolder) const = 0;
virtual const std::string GetFileName(u64 _Address) = 0;
virtual std::string GetFileName(u64 _Address) = 0;
virtual u64 GetBootDOLOffset() const = 0;
virtual u32 GetBootDOLSize(u64 dol_offset) const = 0;