diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-06-12 08:48:13 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-06-12 08:48:13 +0200 |
commit | d9571110348d28de65bd1f45c156c29f1a9218b2 (patch) | |
tree | 0daf03c4e7e4bb581373ff2cd72c7efcae3f47f9 /host/lib | |
parent | eac1451085ff53c0ab65a74d224a143c69af2bf7 (diff) | |
download | uhd-d9571110348d28de65bd1f45c156c29f1a9218b2.tar.gz uhd-d9571110348d28de65bd1f45c156c29f1a9218b2.tar.bz2 uhd-d9571110348d28de65bd1f45c156c29f1a9218b2.zip |
Remove unused vars
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/usrp/gps_ctrl.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/host/lib/usrp/gps_ctrl.cpp b/host/lib/usrp/gps_ctrl.cpp index 798888381..209797b5d 100644 --- a/host/lib/usrp/gps_ctrl.cpp +++ b/host/lib/usrp/gps_ctrl.cpp @@ -61,8 +61,6 @@ class gps_ctrl_parser { if (gps_data_input.size() >= 8) { - uint8_t msg_class = gps_data_input[2]; - uint8_t msg_id = gps_data_input[3]; uint8_t len_lo = gps_data_input[4]; uint8_t len_hi = gps_data_input[5]; size_t len = len_lo | (len_hi << 8); |