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:
Lioncash
2016-01-25 00:10:05 -05:00
parent 0b6cc0592d
commit 3ed5ecd67a
2 changed files with 8 additions and 8 deletions

View File

@ -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;