diff options
Diffstat (limited to 'src/lib/netlist/plib/pstate.cpp')
-rw-r--r-- | src/lib/netlist/plib/pstate.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/netlist/plib/pstate.cpp b/src/lib/netlist/plib/pstate.cpp index f0763d5eab4..bd16ee172e2 100644 --- a/src/lib/netlist/plib/pstate.cpp +++ b/src/lib/netlist/plib/pstate.cpp @@ -7,7 +7,7 @@ #include "pstate.h" -PLIB_NAMESPACE_START() +namespace plib { pstate_manager_t::pstate_manager_t() { @@ -38,7 +38,7 @@ ATTR_COLD void pstate_manager_t::save_state_ptr(const pstring &stname, const pst "DT_FLOAT" }; - auto p = pmake_unique<pstate_entry_t>(stname, dt, owner, size, count, ptr, is_ptr); + auto p = plib::make_unique<pstate_entry_t>(stname, dt, owner, size, count, ptr, is_ptr); m_save.push_back(std::move(p)); } @@ -72,9 +72,9 @@ template<> ATTR_COLD void pstate_manager_t::save_item(pstate_callback_t &state, { //save_state_ptr(stname, DT_CUSTOM, 0, 1, &state); pstate_callback_t *state_p = &state; - auto p = pmake_unique<pstate_entry_t>(stname, owner, state_p); + auto p = plib::make_unique<pstate_entry_t>(stname, owner, state_p); m_save.push_back(std::move(p)); state.register_state(*this, stname); } -PLIB_NAMESPACE_END() +} |