Browse Source

archive_backend: Remove unnecessary const from return types

This doesn't return by reference so const isn't really necessary
nce_cpp
Lioncash 10 years ago
parent
commit
4a87f38e9c
  1. 8
      src/core/file_sys/archive_backend.cpp
  2. 8
      src/core/file_sys/archive_backend.h

8
src/core/file_sys/archive_backend.cpp

@ -43,7 +43,7 @@ Path::Path(LowPathType type, u32 size, u32 pointer) : type(type) {
}
}
const std::string Path::DebugStr() const {
std::string Path::DebugStr() const {
switch (GetType()) {
case Invalid:
default:
@ -66,7 +66,7 @@ const std::string Path::DebugStr() const {
}
}
const std::string Path::AsString() const {
std::string Path::AsString() const {
switch (GetType()) {
case Char:
return string;
@ -83,7 +83,7 @@ const std::string Path::AsString() const {
}
}
const std::u16string Path::AsU16Str() const {
std::u16string Path::AsU16Str() const {
switch (GetType()) {
case Char:
return Common::UTF8ToUTF16(string);
@ -99,7 +99,7 @@ const std::u16string Path::AsU16Str() const {
}
}
const std::vector<u8> Path::AsBinary() const {
std::vector<u8> Path::AsBinary() const {
switch (GetType()) {
case Binary:
return binary;

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

Loading…
Cancel
Save