summaryrefslogtreecommitdiff
path: root/Source/Core/Common/SettingsHandler.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-05-12 13:46:24 -0400
committerLioncash <mathew1800@gmail.com>2018-05-12 13:53:42 -0400
commit0ef7dca0d4e6aab8eab66a71035d6304f9ca495f (patch)
treef852622b4817ac3d31cd05e5b4c441e84ae841c6 /Source/Core/Common/SettingsHandler.cpp
parent1da2091801f80ba567908e7d3f08efcfec900bc8 (diff)
SettingsHandler: Remove redundant type qualifier in SetBytes()
Given the qualifier isn't used for the constructor taking a buffer, remove it here to be consistent.
Diffstat (limited to 'Source/Core/Common/SettingsHandler.cpp')
-rw-r--r--Source/Core/Common/SettingsHandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/SettingsHandler.cpp b/Source/Core/Common/SettingsHandler.cpp
index 9a22a2e5d7..e7292438ef 100644
--- a/Source/Core/Common/SettingsHandler.cpp
+++ b/Source/Core/Common/SettingsHandler.cpp
@@ -31,7 +31,7 @@ const SettingsHandler::Buffer& SettingsHandler::GetBytes() const
return m_buffer;
}
-void SettingsHandler::SetBytes(SettingsHandler::Buffer&& buffer)
+void SettingsHandler::SetBytes(Buffer&& buffer)
{
Reset();
m_buffer = std::move(buffer);