aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2018-06-29 14:40:28 -0700
committerMartin Braun <martin.braun@ettus.com>2018-06-29 14:40:28 -0700
commit0c9ac1e3e86b774aff9892bab19062be43ecc909 (patch)
tree43dc2f63528f9e34fe94127641c6043660e616e5
parentMerge branch 'master' into rfnoc-devel (diff)
downloaduhd-0c9ac1e3e86b774aff9892bab19062be43ecc909.tar.xz
uhd-0c9ac1e3e86b774aff9892bab19062be43ecc909.zip
device3: Remove superfluous _sid_framer
-rw-r--r--host/lib/usrp/device3/device3_impl.cpp1
-rw-r--r--host/lib/usrp/device3/device3_impl.hpp3
2 files changed, 0 insertions, 4 deletions
diff --git a/host/lib/usrp/device3/device3_impl.cpp b/host/lib/usrp/device3/device3_impl.cpp
index 0e959cf21..d8241ae74 100644
--- a/host/lib/usrp/device3/device3_impl.cpp
+++ b/host/lib/usrp/device3/device3_impl.cpp
@@ -16,7 +16,6 @@
using namespace uhd::usrp;
device3_impl::device3_impl()
- : _sid_framer(0)
{
_type = uhd::device::USRP;
_async_md.reset(new async_md_type(1000/*messages deep*/));
diff --git a/host/lib/usrp/device3/device3_impl.hpp b/host/lib/usrp/device3/device3_impl.hpp
index 54352644d..8ecb1f72b 100644
--- a/host/lib/usrp/device3/device3_impl.hpp
+++ b/host/lib/usrp/device3/device3_impl.hpp
@@ -163,9 +163,6 @@ protected:
/***********************************************************************
* Members
**********************************************************************/
- //! A counter, designed to create unique SIDs
- size_t _sid_framer;
-
// TODO: Maybe move these to private
uhd::dict<std::string, boost::weak_ptr<uhd::rx_streamer> > _rx_streamers;
uhd::dict<std::string, boost::weak_ptr<uhd::tx_streamer> > _tx_streamers;