mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 12:05:45 +00:00
archive_backend: Remove unnecessary const from return types
This doesn't return by reference so const isn't really necessary
This commit is contained in:
parent
4cecbb0c85
commit
4a87f38e9c
2 changed files with 8 additions and 8 deletions
|
@ -49,11 +49,11 @@ public:
|
|||
* Gets the string representation of the path for debugging
|
||||
* @return String representation of the path for debugging
|
||||
*/
|
||||
const std::string DebugStr() const;
|
||||
std::string DebugStr() const;
|
||||
|
||||
const std::string AsString() const;
|
||||
const std::u16string AsU16Str() const;
|
||||
const std::vector<u8> AsBinary() const;
|
||||
std::string AsString() const;
|
||||
std::u16string AsU16Str() const;
|
||||
std::vector<u8> AsBinary() const;
|
||||
|
||||
private:
|
||||
LowPathType type;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue