From 3ed5ecd67ab36fb8de81d8da85245d3e1361dda8 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 25 Jan 2016 00:10:05 -0500 Subject: archive_backend: Remove unnecessary const from return types This doesn't return by reference so const isn't really necessary --- src/core/file_sys/archive_backend.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/core/file_sys/archive_backend.h') diff --git a/src/core/file_sys/archive_backend.h b/src/core/file_sys/archive_backend.h index e7a59a1ed..601e95d8c 100644 --- a/src/core/file_sys/archive_backend.h +++ b/src/core/file_sys/archive_backend.h @@ -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 AsBinary() const; + std::string AsString() const; + std::u16string AsU16Str() const; + std::vector AsBinary() const; private: LowPathType type; -- cgit v1.2.3