summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/NANDContentLoader.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-09-14 19:15:27 -0400
committerLioncash <mathew1800@gmail.com>2016-09-14 19:15:31 -0400
commitb1ffa740432f9322bf937101bbc3d0fe78876b62 (patch)
treeddd5576a7d94c02d3a41aa78a82f949f2c42db46 /Source/Core/DiscIO/NANDContentLoader.cpp
parent4c004b6dc978d7585bf0765e22351ef1edd39a3a (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.cpp2
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();