mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00: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:
parent
4c004b6dc9
commit
b1ffa74043
2 changed files with 4 additions and 4 deletions
|
@ -107,7 +107,7 @@ void CNANDContentDataFile::Open()
|
|||
{
|
||||
EnsureOpen();
|
||||
}
|
||||
const std::vector<u8> CNANDContentDataFile::Get()
|
||||
std::vector<u8> CNANDContentDataFile::Get()
|
||||
{
|
||||
std::vector<u8> result;
|
||||
EnsureOpen();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue