From 306cf43d79271d1967fc2111156a4b3540b989c4 Mon Sep 17 00:00:00 2001 From: rlar Date: Sat, 9 Oct 2010 11:32:21 +0000 Subject: [PATCH] remove typedef for _complex, which is used nowhere --- ChangeLog | 4 ++++ src/include/complex.h | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index a84e61df9..d043163a2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 , diff --git a/src/include/complex.h b/src/include/complex.h index 6ea25f832..175228ebb 100644 --- a/src/include/complex.h +++ b/src/include/complex.h @@ -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