mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-02-22 05:01:06 -05:00
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:
@@ -107,7 +107,7 @@ void CNANDContentDataFile::Open()
|
||||
{
|
||||
EnsureOpen();
|
||||
}
|
||||
const std::vector<u8> CNANDContentDataFile::Get()
|
||||
std::vector<u8> CNANDContentDataFile::Get()
|
||||
{
|
||||
std::vector<u8> result;
|
||||
EnsureOpen();
|
||||
|
||||
Reference in New Issue
Block a user