aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M
diff options
context:
space:
mode:
authorkurtis.heimerl <kurtis.heimerl@19bc5d8c-e614-43d4-8b26-e1612bc8e597>2011-11-26 03:18:19 +0000
committerkurtis.heimerl <kurtis.heimerl@19bc5d8c-e614-43d4-8b26-e1612bc8e597>2011-11-26 03:18:19 +0000
commit3b8ad24efd73fd1cedb4692c3ca497f0f2d06a7f (patch)
treece579cae5351d769270898aa4b34b495ae5f772f /Transceiver52M
parent26ca5bc2d2aeaa37c8dd91fbe8d25b20f928e5b5 (diff)
transceiver: remove extra typedefs to remove warnings
These typedefs serve no purpose and the compiler complains. Signed-off-by: Thomas Tsou <ttsou@vt.edu> git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@2665 19bc5d8c-e614-43d4-8b26-e1612bc8e597
Diffstat (limited to 'Transceiver52M')
-rw-r--r--Transceiver52M/sigProcLib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Transceiver52M/sigProcLib.h b/Transceiver52M/sigProcLib.h
index f9f0dce..c20b1ec 100644
--- a/Transceiver52M/sigProcLib.h
+++ b/Transceiver52M/sigProcLib.h
@@ -22,13 +22,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,