summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/plib/ptokenizer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/netlist/plib/ptokenizer.h')
-rw-r--r--src/lib/netlist/plib/ptokenizer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/netlist/plib/ptokenizer.h b/src/lib/netlist/plib/ptokenizer.h
index 773df365bed..42858aa76e4 100644
--- a/src/lib/netlist/plib/ptokenizer.h
+++ b/src/lib/netlist/plib/ptokenizer.h
@@ -66,11 +66,11 @@ namespace plib {
struct token_t
{
explicit token_t(token_type type)
- : m_type(type), m_id(), m_token("")
+ : m_type(type), m_token("")
{
}
token_t(token_type type, const pstring &str)
- : m_type(type), m_id(), m_token(str)
+ : m_type(type), m_token(str)
{
}
token_t(const token_id_t &id, const pstring &str)