summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/nl_setup.cpp
diff options
context:
space:
mode:
author couriersud <couriersud@gmx.org>2020-08-12 20:16:02 +0200
committer couriersud <couriersud@gmx.org>2020-08-12 20:17:10 +0200
commit87b702b31f0c92d1955a927a32c9cf7fb2b968a1 (patch)
treeaecce6f58821d68257b2fbdb894eb1f4e2066fd5 /src/lib/netlist/nl_setup.cpp
parent167da15753419aceb58cc3dea4abc042f9be0185 (diff)
netlist: more include untangling.
* nl_base.h now basically only includes files from core. * all headers in core compile on their own.
Diffstat (limited to 'src/lib/netlist/nl_setup.cpp')
-rw-r--r--src/lib/netlist/nl_setup.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/netlist/nl_setup.cpp b/src/lib/netlist/nl_setup.cpp
index 32ccfb5725f..3abc9b1bc75 100644
--- a/src/lib/netlist/nl_setup.cpp
+++ b/src/lib/netlist/nl_setup.cpp
@@ -5,7 +5,6 @@
#include "analog/nld_twoterm.h"
#include "core/setup.h"
#include "devices/nlid_proxy.h"
-#include "devices/nlid_system.h"
#include "devices/nlid_truthtable.h"
#include "nl_base.h"
#include "nl_factory.h"
@@ -13,6 +12,7 @@
#include "nl_setup.h"
#include "plib/penum.h"
#include "plib/putil.h"
+#include "plib/pstonum.h"
#include "solver/nld_solver.h"
@@ -1764,7 +1764,6 @@ bool source_token_t::parse(nlparse_t &setup, const pstring &name)
if (name == m_name)
{
auto ret = setup.parse_tokens(m_store, name);
- printf("parsed tokens: %s %d\n", name.c_str(), (int) ret);
return ret;
}