NANDContentLoader: Make CNANDContentData's Get function return by non-const value

const specifiers like this are practically pointless and can inhibit move construction.
This commit is contained in:
Lioncash 2016-09-14 19:15:27 -04:00
parent 4c004b6dc9
commit b1ffa74043
2 changed files with 4 additions and 4 deletions

View File

@ -107,7 +107,7 @@ void CNANDContentDataFile::Open()
{
EnsureOpen();
}
const std::vector<u8> CNANDContentDataFile::Get()
std::vector<u8> CNANDContentDataFile::Get()
{
std::vector<u8> result;
EnsureOpen();

View File

@ -27,7 +27,7 @@ class CNANDContentData
public:
virtual ~CNANDContentData() = 0;
virtual void Open(){};
virtual const std::vector<u8> Get() = 0;
virtual std::vector<u8> Get() = 0;
virtual bool GetRange(u32 start, u32 size, u8* buffer) = 0;
virtual void Close(){};
};
@ -38,7 +38,7 @@ public:
CNANDContentDataFile(const std::string& filename) : m_filename(filename){};
void Open() override;
const std::vector<u8> Get() override;
std::vector<u8> Get() override;
bool GetRange(u32 start, u32 size, u8* buffer) override;
void Close() override;
@ -53,7 +53,7 @@ class CNANDContentDataBuffer final : public CNANDContentData
public:
CNANDContentDataBuffer(const std::vector<u8>& buffer) : m_buffer(buffer){};
const std::vector<u8> Get() override { return m_buffer; };
std::vector<u8> Get() override { return m_buffer; };
bool GetRange(u32 start, u32 size, u8* buffer) override;
private: