summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/netlist.cpp
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-06-29 23:17:24 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2020-06-29 23:17:24 +0200
commited39da783d416c2ff776935a5dec9dd5bb3606ce (patch)
tree7e0b239640132cf5fe122c339516112ed5af88bb /src/devices/machine/netlist.cpp
parent1b3322edc39ee2f0d9f8f233f7887c3f1d9501a6 (diff)
various devices and drivers: removed superfluous semicolons (nw)
Diffstat (limited to 'src/devices/machine/netlist.cpp')
-rw-r--r--src/devices/machine/netlist.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/netlist.cpp b/src/devices/machine/netlist.cpp
index 2aa5eb0ec60..cf839c876ea 100644
--- a/src/devices/machine/netlist.cpp
+++ b/src/devices/machine/netlist.cpp
@@ -848,7 +848,7 @@ void netlist_mame_stream_output_device::pre_parse_action(netlist::nlparse_t &par
const auto lambda = [this](auto &in, netlist::nl_fptype val)
{
- this->process(in.exec().time(), val);;
+ this->process(in.exec().time(), val);
};
using lb_t = decltype(lambda);