mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12:00
Remove std::move on a const variable
This commit is contained in:
parent
c2ae7ee402
commit
42c2df877f
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue