mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00: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)
|
||||
: m_link(std::move(_link))
|
||||
: m_link(_link)
|
||||
, m_cpu(std::move(_cpu))
|
||||
{
|
||||
if (m_cpu.empty())
|
||||
|
|
Loading…
Add table
Reference in a new issue