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();