mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-12-06 07:12:28 +01:00
Remove std::move on a const variable
This commit is contained in:
parent
c2ae7ee402
commit
42c2df877f
|
|
@ -380,7 +380,7 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
jit_compiler::jit_compiler(const std::unordered_map<std::string, u64>& _link, std::string _cpu)
|
jit_compiler::jit_compiler(const std::unordered_map<std::string, u64>& _link, std::string _cpu)
|
||||||
: m_link(std::move(_link))
|
: m_link(_link)
|
||||||
, m_cpu(std::move(_cpu))
|
, m_cpu(std::move(_cpu))
|
||||||
{
|
{
|
||||||
if (m_cpu.empty())
|
if (m_cpu.empty())
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue