diff options
author | 2019-10-31 18:39:09 +0100 | |
---|---|---|
committer | 2019-10-31 18:39:09 +0100 | |
commit | 6c075e602cf83b379b8fa2c981694134b679a538 (patch) | |
tree | f483a7149300768974de6b33036abd22be86734b /src/lib/netlist/nl_parser.h | |
parent | cae02668fa8ef2c31b1d66ac4b7784b84bb734ac (diff) |
netlist: maintenance and simplifcation. (nw)
- solver: align matrix population along the various solvers
- solver: delete dead code
- renamed nl_double to nl_fptype and use nl_fptype where previously
double has been used.
- renamed param_double_t to param_fp_t
Diffstat (limited to 'src/lib/netlist/nl_parser.h')
-rw-r--r-- | src/lib/netlist/nl_parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/netlist/nl_parser.h b/src/lib/netlist/nl_parser.h index 3140fad6138..ce95f6ec346 100644 --- a/src/lib/netlist/nl_parser.h +++ b/src/lib/netlist/nl_parser.h @@ -48,7 +48,7 @@ namespace netlist void verror(const pstring &msg) override; private: - nl_double eval_param(const token_t &tok); + nl_fptype eval_param(const token_t &tok); token_id_t m_tok_param_left; token_id_t m_tok_param_right; |