diff options
author | 2016-05-25 20:28:58 +0200 | |
---|---|---|
committer | 2016-05-27 01:19:59 +0200 | |
commit | fd62273a87b8fe43492e4a466ea97993b88904f8 (patch) | |
tree | 896b1aca134a5396e0dedb31aac26875b3466c60 /src/lib/netlist/plib/pfmtlog.cpp | |
parent | 111c5a3dc080a4d454dbcadb6c211ccf2c749da7 (diff) |
Moved more code into plib namespace. (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 d2388efad73..90e743b8125 100644 --- a/src/lib/netlist/plib/pfmtlog.cpp +++ b/src/lib/netlist/plib/pfmtlog.cpp @@ -16,6 +16,8 @@ #include "pfmtlog.h" #include "palloc.h" +PLIB_NAMESPACE_START() + pfmt::pfmt(const pstring &fmt) : m_str(m_str_buf), m_allocated(0), m_arg(0) { @@ -161,4 +163,7 @@ void pfmt::format_element(const char *f, const char *l, const char *fmt_spec, . } va_end(ap); } + +PLIB_NAMESPACE_END() + #endif |