summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/prg/nltool.cpp
diff options
context:
space:
mode:
author couriersud <couriersud@gmx.org>2020-04-19 19:04:33 +0200
committer couriersud <couriersud@gmx.org>2020-04-19 19:04:33 +0200
commit104090ae0e07407f9dd2e0a897395b5122faca6e (patch)
treea5e286523c8118c4bf14e8c4fb4e0c4855cee497 /src/lib/netlist/prg/nltool.cpp
parentbd32fdecd9a1fa726e84236fd64eccb010c66716 (diff)
netlist: rename some camel case names. (nw)
Diffstat (limited to 'src/lib/netlist/prg/nltool.cpp')
-rw-r--r--src/lib/netlist/prg/nltool.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/netlist/prg/nltool.cpp b/src/lib/netlist/prg/nltool.cpp
index d7f148eacd8..b9225c3b640 100644
--- a/src/lib/netlist/prg/nltool.cpp
+++ b/src/lib/netlist/prg/nltool.cpp
@@ -374,13 +374,13 @@ struct input_t
case netlist::param_t::POINTER:
throw netlist::nl_exception(plib::pfmt("param {1} is not numeric\n")(m_param->name()));
case netlist::param_t::DOUBLE:
- static_cast<netlist::param_fp_t*>(m_param)->setTo(m_value);
+ static_cast<netlist::param_fp_t*>(m_param)->set(m_value);
break;
case netlist::param_t::INTEGER:
- static_cast<netlist::param_int_t*>(m_param)->setTo(static_cast<int>(m_value));
+ static_cast<netlist::param_int_t*>(m_param)->set(static_cast<int>(m_value));
break;
case netlist::param_t::LOGIC:
- static_cast<netlist::param_logic_t*>(m_param)->setTo(static_cast<bool>(m_value));
+ static_cast<netlist::param_logic_t*>(m_param)->set(static_cast<bool>(m_value));
break;
}
}