mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 20:58:54 +00:00
don't use std::move on const variables
This commit is contained in:
parent
1b1fc39f02
commit
3bc8a26083
3 changed files with 4 additions and 4 deletions
|
@ -45,7 +45,7 @@ public:
|
|||
std::getline(buffer, section, '.');
|
||||
std::getline(buffer, key, '=');
|
||||
std::getline(buffer, value, '=');
|
||||
const std::optional<Config::System> system = Config::GetSystemFromName(system_str);
|
||||
std::optional<Config::System> system = Config::GetSystemFromName(system_str);
|
||||
if (system)
|
||||
{
|
||||
m_values.emplace_back(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue