From 86545d1ab96ad660ae83fadd68705111f09ee26b Mon Sep 17 00:00:00 2001 From: Thomas Tsou Date: Wed, 5 Oct 2011 22:32:25 -0400 Subject: [PATCH] transceiver: remove extra typedefs to remove warnings These typedefs serve no purpose and the compiler complains. Signed-off-by: Thomas Tsou --- public-trunk/Transceiver52M/sigProcLib.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public-trunk/Transceiver52M/sigProcLib.h b/public-trunk/Transceiver52M/sigProcLib.h index 672c896..0cfcec2 100644 --- a/public-trunk/Transceiver52M/sigProcLib.h +++ b/public-trunk/Transceiver52M/sigProcLib.h @@ -32,13 +32,13 @@ using namespace GSM; /** Indicated signalVector symmetry */ -typedef enum Symmetry { +enum Symmetry { NONE = 0, ABSSYM = 1 }; /** Convolution type indicator */ -typedef enum ConvType { +enum ConvType { FULL_SPAN = 0, OVERLAP_ONLY = 1, START_ONLY = 2,