summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/archive_backend.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-01-25 06:10:05 +0100
committerLioncash <mathew1800@gmail.com>2016-01-25 06:14:53 +0100
commit3ed5ecd67ab36fb8de81d8da85245d3e1361dda8 (patch)
tree573369fec57f60223bda8cbf111504f82bea8426 /src/core/file_sys/archive_backend.h
parentMerge pull request #1334 from tfarley/hw-depth-modifiers (diff)
downloadyuzu-3ed5ecd67ab36fb8de81d8da85245d3e1361dda8.tar
yuzu-3ed5ecd67ab36fb8de81d8da85245d3e1361dda8.tar.gz
yuzu-3ed5ecd67ab36fb8de81d8da85245d3e1361dda8.tar.bz2
yuzu-3ed5ecd67ab36fb8de81d8da85245d3e1361dda8.tar.lz
yuzu-3ed5ecd67ab36fb8de81d8da85245d3e1361dda8.tar.xz
yuzu-3ed5ecd67ab36fb8de81d8da85245d3e1361dda8.tar.zst
yuzu-3ed5ecd67ab36fb8de81d8da85245d3e1361dda8.zip
Diffstat (limited to '')
-rw-r--r--src/core/file_sys/archive_backend.h8
1 files changed, 4 insertions, 4 deletions
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<u8> AsBinary() const;
+ std::string AsString() const;
+ std::u16string AsU16Str() const;
+ std::vector<u8> AsBinary() const;
private:
LowPathType type;