summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/nl_parser.cpp
diff options
context:
space:
mode:
author couriersud <couriersud@gmx.org>2020-09-13 12:44:05 +0200
committer couriersud <couriersud@gmx.org>2020-09-13 12:44:05 +0200
commit8fb35bf34f8ffb7cf1931384d3877f071e2a87d1 (patch)
treecd06f31e93478c1ccbd2729f5a113c2306ea0b7b /src/lib/netlist/nl_parser.cpp
parente05a9000911481f48922e86a9bb36310dbfdb6fb (diff)
parent06c504f651478074ad87a4b90047f29fb8598420 (diff)
Merge remote-tracking branch 'origin/master' into netlist-generated
Diffstat (limited to 'src/lib/netlist/nl_parser.cpp')
-rw-r--r--src/lib/netlist/nl_parser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/netlist/nl_parser.cpp b/src/lib/netlist/nl_parser.cpp
index d5823d2e930..32a5c542a16 100644
--- a/src/lib/netlist/nl_parser.cpp
+++ b/src/lib/netlist/nl_parser.cpp
@@ -120,7 +120,7 @@ bool parser_t::parse(const token_store &tokstor, const pstring &nlname)
if (token.is(m_tok_NETLIST_START) && (name.str() == nlname || nlname.empty()))
{
require_token(m_tok_paren_right);
- parse_netlist(name.str());
+ parse_netlist();
return true;
}
if (token.is(m_tok_TRUTHTABLE_START) && name.str() == nlname)
@@ -165,7 +165,7 @@ bool parser_t::parse(const token_store &tokstor, const pstring &nlname)
}
}
-void parser_t::parse_netlist(const pstring &nlname)
+void parser_t::parse_netlist()
{
while (true)
{