laforge
/
openbts-osmo
Archived
1
0
Fork 0

transceiver: remove extra typedefs to remove warnings

These typedefs serve no purpose and the compiler complains.

Signed-off-by: Thomas Tsou <ttsou@vt.edu>
This commit is contained in:
Thomas Tsou 2011-10-05 22:32:25 -04:00
parent 4fcc2bd352
commit 86545d1ab9
1 changed files with 2 additions and 2 deletions

View File

@ -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,