mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
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.
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user