mirror of
https://github.com/holub/mame
synced 2025-04-24 09:20:02 +03:00
std::move is required here, unfortunately (nw)
This commit is contained in:
parent
b0bb77c506
commit
78934fe9cc
@ -527,7 +527,7 @@ std::unique_ptr<util::disasm_interface> mb86901_device::create_disassembler()
|
||||
{
|
||||
auto dasm = std::make_unique<sparc_disassembler>(static_cast<sparc_disassembler::config const *>(this), 7);
|
||||
m_asi_desc_adder(dasm.get());
|
||||
return dasm;
|
||||
return std::move(dasm);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user