summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/netlist.h
diff options
context:
space:
mode:
author couriersud <couriersud@gmx.org>2020-06-28 13:14:16 +0200
committer couriersud <couriersud@gmx.org>2020-06-28 13:14:43 +0200
commitab31af569fb543f4b81fe30c3c37f6c957b09c48 (patch)
tree6a93d3b374bbce8c135b1070283d88d5b48de2a1 /src/devices/machine/netlist.h
parent3fcdfa0a9b1783f556abe36c9fb927c25c2170ee (diff)
netlist: include file refactoring.
The purpose of this ongoing exercise is to remove unnecessary dependencies in header files. netlist implementations should only have access to what they need. The same applies to device implementations. Core stuff will be moved to the core subdirectory going forward.
Diffstat (limited to 'src/devices/machine/netlist.h')
-rw-r--r--src/devices/machine/netlist.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/netlist.h b/src/devices/machine/netlist.h
index 207f168dee8..4486eb729a6 100644
--- a/src/devices/machine/netlist.h
+++ b/src/devices/machine/netlist.h
@@ -111,7 +111,7 @@ protected:
virtual void device_pre_save() override;
virtual void device_clock_changed() override;
- netlist::host_arena::unique_ptr<netlist::netlist_state_t> base_validity_check(validity_checker &valid) const;
+ std::unique_ptr<netlist::netlist_state_t> base_validity_check(validity_checker &valid) const;
attotime m_cur_time;
attotime m_attotime_per_clock;