summaryrefslogtreecommitdiff
path: root/Source/Core/UICommon/CommandLineParse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/UICommon/CommandLineParse.cpp')
-rw-r--r--Source/Core/UICommon/CommandLineParse.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/Core/UICommon/CommandLineParse.cpp b/Source/Core/UICommon/CommandLineParse.cpp
index a37f0f2561..6b855457d8 100644
--- a/Source/Core/UICommon/CommandLineParse.cpp
+++ b/Source/Core/UICommon/CommandLineParse.cpp
@@ -54,9 +54,8 @@ public:
std::optional<Config::System> system = Config::GetSystemFromName(system_str);
if (system)
{
- m_values.emplace_back(
- Config::Location{std::move(*system), std::move(section), std::move(key)},
- std::move(value));
+ m_values.emplace_back(Config::Location{*system, std::move(section), std::move(key)},
+ std::move(value));
}
}
}