summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/plib/pfmtlog.h
diff options
context:
space:
mode:
author balr0g <balrog032@gmail.com>2016-06-07 15:15:37 -0400
committer couriersud <couriersud@arcor.de>2016-06-07 21:40:30 +0200
commitb27790890530b658e178846e7da01045185f0fce (patch)
tree95c027c901b343de6600a65d8d8f1beda51cbcdf /src/lib/netlist/plib/pfmtlog.h
parent9137ace16ae5bed3f7164409a8622f61a9db2b80 (diff)
- Minor cosmetic refactoring. Added a "uninitialised array" template to
allow in-place creation (for increased locality) of netlist classes. Main use is in truthtable class. - Remove PLIB_NAMESPACE macros. - Remove namespace macros. Use explicit namespace declarations. - Moved device definitions into cpp files. - Moved more device definitions into cpp files. - New prefix "nlid" for include files flags purely internal include files not to be leaked into userland. - Fix factory code.
Diffstat (limited to 'src/lib/netlist/plib/pfmtlog.h')
-rw-r--r--src/lib/netlist/plib/pfmtlog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/netlist/plib/pfmtlog.h b/src/lib/netlist/plib/pfmtlog.h
index 1aff9473311..603e623c103 100644
--- a/src/lib/netlist/plib/pfmtlog.h
+++ b/src/lib/netlist/plib/pfmtlog.h
@@ -14,7 +14,7 @@
#include "pstring.h"
#include "ptypes.h"
-PLIB_NAMESPACE_START()
+namespace plib {
template <typename T>
struct ptype_treats
@@ -295,7 +295,7 @@ void plog_channel<L, build_enabled>::vdowrite(const pstring &ls) const
m_base->vlog(L, ls);
}
-PLIB_NAMESPACE_END()
+}
#endif /* PSTRING_H_ */