#4/4 finish the switch from ngcomplex* args to ngcomplex
This commit is contained in:
parent
a056ea3065
commit
fce7548bd2
|
|
@ -1,3 +1,7 @@
|
|||
2012-02-07 Robert Larice
|
||||
* src/include/ngspice/complex.h :
|
||||
#4/4 finish the switch from ngcomplex* args to ngcomplex
|
||||
|
||||
2012-02-07 Robert Larice
|
||||
* src/ngsconvert.c ,
|
||||
* src/tclspice.c ,
|
||||
|
|
|
|||
|
|
@ -14,8 +14,8 @@ struct ngcomplex {
|
|||
|
||||
typedef struct ngcomplex ngcomplex_t;
|
||||
|
||||
#define realpart(cval) (&(cval))->cx_real
|
||||
#define imagpart(cval) (&(cval))->cx_imag
|
||||
#define realpart(cval) (cval).cx_real
|
||||
#define imagpart(cval) (cval).cx_imag
|
||||
|
||||
#ifdef CIDER
|
||||
/* From Cider numcomplex.h
|
||||
|
|
|
|||
Loading…
Reference in New Issue