diff options
| author | Lioncash <mathew1800@gmail.com> | 2016-09-14 19:15:27 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2016-09-14 19:15:31 -0400 |
| commit | b1ffa740432f9322bf937101bbc3d0fe78876b62 (patch) | |
| tree | ddd5576a7d94c02d3a41aa78a82f949f2c42db46 /Source/Core/DiscIO/NANDContentLoader.cpp | |
| parent | 4c004b6dc978d7585bf0765e22351ef1edd39a3a (diff) | |
NANDContentLoader: Make CNANDContentData's Get function return by non-const value
const specifiers like this are practically pointless and can inhibit move construction.
Diffstat (limited to 'Source/Core/DiscIO/NANDContentLoader.cpp')
| -rw-r--r-- | Source/Core/DiscIO/NANDContentLoader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/NANDContentLoader.cpp b/Source/Core/DiscIO/NANDContentLoader.cpp index 98978d98b0..6d4ec186c1 100644 --- a/Source/Core/DiscIO/NANDContentLoader.cpp +++ b/Source/Core/DiscIO/NANDContentLoader.cpp @@ -107,7 +107,7 @@ void CNANDContentDataFile::Open() { EnsureOpen(); } -const std::vector<u8> CNANDContentDataFile::Get() +std::vector<u8> CNANDContentDataFile::Get() { std::vector<u8> result; EnsureOpen(); |
