summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author couriersud <couriersud@gmx.org>2020-05-22 00:55:02 +0200
committer couriersud <couriersud@gmx.org>2020-05-22 01:15:19 +0200
commit363485b628f370714ea065fcbd2484d7e0510c1e (patch)
tree4cc9fe7bf5c5bf66513942fdd30d7f1007e36688
parent6141fa4a9c9558460a8467388ea5e2f6dde461af (diff)
netlist: Fix OSX compile. (nw)
-rw-r--r--src/devices/machine/netlist.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/netlist.cpp b/src/devices/machine/netlist.cpp
index 4d829bdc4d8..ff72eccc6db 100644
--- a/src/devices/machine/netlist.cpp
+++ b/src/devices/machine/netlist.cpp
@@ -1364,7 +1364,7 @@ void netlist_mame_cpu_device::device_start()
void netlist_mame_cpu_device::nl_register_devices(netlist::nlparse_t &parser) const
{
parser.factory().add<nld_analog_callback>( "NETDEV_CALLBACK",
- netlist::factory::properties("-", std::move(PSOURCELOC())));
+ netlist::factory::properties("-", PSOURCELOC()));
}
uint64_t netlist_mame_cpu_device::execute_clocks_to_cycles(uint64_t clocks) const noexcept
@@ -1524,9 +1524,9 @@ void netlist_mame_sound_device::device_start()
void netlist_mame_sound_device::nl_register_devices(netlist::nlparse_t &parser) const
{
parser.factory().add<nld_sound_out>("NETDEV_SOUND_OUT",
- netlist::factory::properties("+CHAN", std::move(PSOURCELOC())));
+ netlist::factory::properties("+CHAN", PSOURCELOC()));
parser.factory().add<nld_sound_in>("NETDEV_SOUND_IN",
- netlist::factory::properties("-", std::move(PSOURCELOC())));
+ netlist::factory::properties("-", PSOURCELOC()));
}
void netlist_mame_sound_device::device_clock_changed()