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

@ -24,7 +24,7 @@ public:
bool IsValid() const override { return m_Valid; }
u64 GetFileSize(const std::string& _rFullPath) override;
const std::vector<SFileInfo>& GetFileList() override;
const std::string GetFileName(u64 _Address) override;
std::string GetFileName(u64 _Address) override;
u64 ReadFile(const std::string& _rFullPath, u8* _pBuffer, u64 _MaxBufferSize,
u64 _OffsetInFile) override;
bool ExportFile(const std::string& _rFullPath, const std::string& _rExportFilename) override;