mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 03:37:57 -05: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:
@ -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;
|
||||
|
Reference in New Issue
Block a user