diff options
author | 2019-11-08 12:56:05 +0100 | |
---|---|---|
committer | 2019-11-08 12:56:05 +0100 | |
commit | bbbd1c0e8e0baaeb9e45fd5285b0202dc8cdced4 (patch) | |
tree | 5ae90fb46e91b4a27910f30273232d054427dbc4 /src/lib/netlist/nl_parser.h | |
parent | ffe5c0772c036b037a688826fd6d0307005a8949 (diff) |
netlist: maintenance. (nw)
- switch to VS 2019 community and fix standalone build.
- more migration to C++ comment style.
- add some more doxygen markup.
Diffstat (limited to 'src/lib/netlist/nl_parser.h')
-rw-r--r-- | src/lib/netlist/nl_parser.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/src/lib/netlist/nl_parser.h b/src/lib/netlist/nl_parser.h index ce95f6ec346..0805684e286 100644 --- a/src/lib/netlist/nl_parser.h +++ b/src/lib/netlist/nl_parser.h @@ -1,9 +1,9 @@ // license:GPL-2.0+ // copyright-holders:Couriersud -/* - * nl_parser.c - * - */ + +/// +/// \file nl_parser.c +/// #ifndef NL_PARSER_H_ #define NL_PARSER_H_ @@ -42,9 +42,6 @@ namespace netlist void net_local_source(); void net_truthtable_start(const pstring &nlname); - /* for debugging messages */ - //netlist_state_t &netlist() { return m_setup.netlist(); } - void verror(const pstring &msg) override; private: @@ -77,4 +74,4 @@ namespace netlist } // namespace netlist -#endif /* NL_PARSER_H_ */ +#endif // NL_PARSER_H_ |