summaryrefslogtreecommitdiffstats
path: root/src/lib/netlist/plib/pfmtlog.cpp
diff options
context:
space:
mode:
author couriersud <couriersud@users.noreply.github.com>2022-06-10 16:11:21 +0200
committer GitHub <noreply@github.com>2022-06-10 16:11:21 +0200
commit1f3f5e0d574e256bc106ee4bc9ee701858585ca3 (patch)
treee471112c27fccd862215cf2c460d5471d546de86 /src/lib/netlist/plib/pfmtlog.cpp
parent63e595ae364a6f9e6b3692af673d1a0c48523f2d (diff)
netlist: fix bugs and more cpp instead of macros (#9897)
* netlist: fix bugs and more cpp instead of macros - C-style comments converted to c++ - Fix crash in state saving code when an abort queue processing event is pending. - Fix a bug where a net could be twice in the queue. - Convert more macros to c++ - fixed SUBTARGET=nl build - fixed potential bugs which would allow a terminal to belong to more than one net. This is not possible even for a short time. - moved some member function definitions out-of-class. - moved code out-of-class - added constexpr where appropriate - fixed mamenl build - Cleanup and indentation
Diffstat (limited to 'src/lib/netlist/plib/pfmtlog.cpp')
-rw-r--r--src/lib/netlist/plib/pfmtlog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/netlist/plib/pfmtlog.cpp b/src/lib/netlist/plib/pfmtlog.cpp
index 61c48e0051f..64a9d8791ae 100644
--- a/src/lib/netlist/plib/pfmtlog.cpp
+++ b/src/lib/netlist/plib/pfmtlog.cpp
@@ -39,7 +39,7 @@ private:
};
#endif
-pfmt::rtype pfmt::setfmt(std::stringstream &strm, char32_t cfmt_spec)
+pfmt::rtype pfmt::set_format(std::stringstream &strm, char32_t cfmt_spec)
{
pstring fmt;
pstring search("{");