mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
don't use std::move on const variables
This commit is contained in:
@ -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(
|
||||
|
Reference in New Issue
Block a user