diff options
author | 2019-03-01 07:47:51 +0100 | |
---|---|---|
committer | 2019-03-01 10:30:24 +0100 | |
commit | 17fcc38a25415059e6b20d5d9b1f8c5e4ef81333 (patch) | |
tree | 1a426e73534b706dd836e9521d0126fd9fc2bed1 /src/lib/netlist/prg/nltool.cpp | |
parent | 2b49e6ed112e90299811437cf14524b8ec393f07 (diff) |
netlist: memory code refactoring. (nw)
Diffstat (limited to 'src/lib/netlist/prg/nltool.cpp')
-rw-r--r-- | src/lib/netlist/prg/nltool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/netlist/prg/nltool.cpp b/src/lib/netlist/prg/nltool.cpp index f9e25346493..784161a71a8 100644 --- a/src/lib/netlist/prg/nltool.cpp +++ b/src/lib/netlist/prg/nltool.cpp @@ -625,7 +625,7 @@ void tool_app_t::listdevices() nt.setup().prepare_to_run(); - std::vector<netlist::poolptr<netlist::core_device_t>> devs; + std::vector<netlist::pool_owned_ptr<netlist::core_device_t>> devs; for (auto & f : list) { |