bug
Felix Salfelder <[email protected]>
| Newsgroups | gmane.comp.gnu.gnucap.devel |
|---|---|
| Message-ID | <[email protected]> |
Hi Al.
in
MODEL_SEMI_RESISTOR::MODEL_SEMI_RESISTOR(const MODEL_SEMI_RESISTOR& p)
:MODEL_SEMI_BASE( ), _rsh(p._rsh)
^the p is missing
this breaks things like
.model resmod RES <args>
.subckt s ..
R1 1 2 resmod
.ends
X1 .. s,
because the model is copied to the scope of X1 via clone (or something
like that).
regards
felix