mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00: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:
parent
1da2091801
commit
0ef7dca0d4
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue