diff options
author | 2016-04-23 23:35:27 +0200 | |
---|---|---|
committer | 2016-05-02 21:56:57 +0200 | |
commit | 576189b1695936f35f077918fbb9191ed68ad8df (patch) | |
tree | b20669555c740ced035d9ffb78f71d1619cf7dd9 /src/lib/netlist/analog/nld_fourterm.cpp | |
parent | 28eeb49676eb5550180d481b87f5a6ca86564828 (diff) |
Converted most subdevices to unique_ptr. This is a temporary measure
until the device initialisation is moved into the constructor. Started
converting constructors of devices to be passed name and netlist. (nw)
Diffstat (limited to 'src/lib/netlist/analog/nld_fourterm.cpp')
-rw-r--r-- | src/lib/netlist/analog/nld_fourterm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/netlist/analog/nld_fourterm.cpp b/src/lib/netlist/analog/nld_fourterm.cpp index 51502319f83..7cba4b15588 100644 --- a/src/lib/netlist/analog/nld_fourterm.cpp +++ b/src/lib/netlist/analog/nld_fourterm.cpp @@ -34,8 +34,8 @@ void NETLIB_NAME(VCCS)::start_internal(const nl_double def_RI) register_terminal("_OP1", m_OP1); register_terminal("_ON1", m_ON1); - m_IP.m_otherterm = &m_IN; // <= this should be nullptr and terminal be filtered out prior to solving... - m_IN.m_otherterm = &m_IP; // <= this should be nullptr and terminal be filtered out prior to solving... + m_IP.m_otherterm = &m_IN; // <= this should be NULL and terminal be filtered out prior to solving... + m_IN.m_otherterm = &m_IP; // <= this should be NULL and terminal be filtered out prior to solving... m_OP.m_otherterm = &m_IP; m_OP1.m_otherterm = &m_IN; |