diff options
author | 2017-01-05 01:43:12 +0100 | |
---|---|---|
committer | 2017-01-05 01:43:31 +0100 | |
commit | 02c3f45bff27e8ca27d5f68f52c816e5f055eadf (patch) | |
tree | f647ed591e5997496a6bb0ff3dc28fb887534f1f /src/lib/netlist/plib/pfmtlog.cpp | |
parent | 67841056dae03d2e8f418b3be7150701c705d6b5 (diff) |
Fix clang "-Wno-weak-vtables" warnings in netlist source. Refactored
code along the way. (nw)
Diffstat (limited to 'src/lib/netlist/plib/pfmtlog.cpp')
-rw-r--r-- | src/lib/netlist/plib/pfmtlog.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/netlist/plib/pfmtlog.cpp b/src/lib/netlist/plib/pfmtlog.cpp index 73da6822d20..48b0f1544c1 100644 --- a/src/lib/netlist/plib/pfmtlog.cpp +++ b/src/lib/netlist/plib/pfmtlog.cpp @@ -17,6 +17,11 @@ #include "palloc.h" namespace plib { + +plog_dispatch_intf::~plog_dispatch_intf() +{ +} + pfmt::pfmt(const pstring &fmt) : m_str(m_str_buf), m_allocated(0), m_arg(0) { |