mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-03 16:16:05 +00:00
Filesystem: Return strings from GetFileName without the const qualifier
This is mostly pointless and can inhibit move construction
This commit is contained in:
parent
2c8b9d18a8
commit
144c23dead
3 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue