remove typedef for _complex, which is used nowhere

This commit is contained in:
rlar 2010-10-09 11:32:21 +00:00
parent e945ab68bc
commit 306cf43d79
2 changed files with 4 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2010-10-09 Robert Larice
* src/include/complex.h :
remove typedef for _complex, which is used nowhere
2010-10-08 Robert Larice
* src/frontend/evaluate.c ,
* src/frontend/parse.c ,

View File

@ -12,10 +12,6 @@ struct _complex1 { /* IBM portability... renamed due to double definition in M
double cx_imag;
} ;
#ifdef _MSC_VER
typedef struct _complex1 _complex;
#endif
typedef struct _complex1 complex;
#define realpart(cval) ((struct _complex1 *) (cval))->cx_real