nld_4053.cpp: Remove unused lambda capture

This commit is contained in:
AJR 2020-07-28 23:59:03 -04:00
parent d6a47e20e9
commit ecb1d266c6

View File

@ -96,7 +96,7 @@ namespace netlist
nl_fptype sup = (m_supply.VCC().Q_Analog() - m_supply.GND().Q_Analog());
Rval = m_base_r() * nlconst::magic(5.0) / sup;
}
R.change_state([this, &R, Rval]() -> void { this->m_RX.set_R(Rval);});
R.change_state([this, Rval]() -> void { this->m_RX.set_R(Rval);});
}
analog::NETLIB_SUB(R_base) m_RX;