summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/devices/nld_system.cpp
diff options
context:
space:
mode:
author couriersud <couriersud@arcor.de>2016-03-14 22:13:32 +0100
committer couriersud <couriersud@arcor.de>2016-03-14 22:21:24 +0100
commit202e310c526652eaa9adc8b7398422f4e323a54d (patch)
treea06d358bc708b80b3f803436c44e9a42ce0e31c8 /src/lib/netlist/devices/nld_system.cpp
parentae4b28e224e31f8a8a34860abd8e8c34be5cc481 (diff)
netlist: rename plist_t to pvector_t to clarify origin.
Diffstat (limited to 'src/lib/netlist/devices/nld_system.cpp')
-rw-r--r--src/lib/netlist/devices/nld_system.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/netlist/devices/nld_system.cpp b/src/lib/netlist/devices/nld_system.cpp
index 2cb65c7a543..be2ad3718b0 100644
--- a/src/lib/netlist/devices/nld_system.cpp
+++ b/src/lib/netlist/devices/nld_system.cpp
@@ -78,7 +78,7 @@ NETLIB_START(extclock)
connect_late(m_feedback, m_Q);
{
netlist_time base = netlist_time::from_hz(m_freq.Value()*2);
- pstring_list_t pat(m_pattern.Value(),",");
+ pstring_vector_t pat(m_pattern.Value(),",");
m_off = netlist_time::from_double(m_offset.Value());
int pati[256];
@@ -301,7 +301,7 @@ NETLIB_START(function)
for (int i=0; i < m_N; i++)
register_input(pfmt("A{1}")(i), m_I[i]);
- pstring_list_t cmds(m_func.Value(), " ");
+ pstring_vector_t cmds(m_func.Value(), " ");
m_precompiled.clear();
for (std::size_t i=0; i < cmds.size(); i++)