diff options
Diffstat (limited to 'src/lib/netlist/plib/pstate.h')
-rw-r--r-- | src/lib/netlist/plib/pstate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/netlist/plib/pstate.h b/src/lib/netlist/plib/pstate.h index b42d3dac882..91c67ee0e1c 100644 --- a/src/lib/netlist/plib/pstate.h +++ b/src/lib/netlist/plib/pstate.h @@ -84,7 +84,7 @@ class pstate_manager_t; class pstate_callback_t { public: - typedef plist_t<pstate_callback_t *> list_t; + typedef pvector_t<pstate_callback_t *> list_t; virtual ~pstate_callback_t() { }; @@ -96,7 +96,7 @@ protected: struct pstate_entry_t { - typedef plist_t<pstate_entry_t *> list_t; + typedef pvector_t<pstate_entry_t *> list_t; pstate_entry_t(const pstring &stname, const pstate_data_type_e dt, const void *owner, const int size, const int count, void *ptr, bool is_ptr) |