aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/include
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2021-01-08 16:57:29 +0100
committerAaron Rossetto <aaron.rossetto@ni.com>2021-03-04 08:18:41 -0600
commita8223f8dea40840719143c5490bd4de97bd132b7 (patch)
tree5ea2b35f636944955239b35707ea3c5281d1d84a /host/lib/include
parentbfd184b879c1a0878f863d859a74c8e010848f12 (diff)
downloaduhd-a8223f8dea40840719143c5490bd4de97bd132b7.tar.gz
uhd-a8223f8dea40840719143c5490bd4de97bd132b7.tar.bz2
uhd-a8223f8dea40840719143c5490bd4de97bd132b7.zip
rfnoc: tx_streamer: Remove EOV size attribute
It is unused, and causes clang warnings.
Diffstat (limited to 'host/lib/include')
-rw-r--r--host/lib/include/uhdlib/transport/tx_streamer_impl.hpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/host/lib/include/uhdlib/transport/tx_streamer_impl.hpp b/host/lib/include/uhdlib/transport/tx_streamer_impl.hpp
index 4cb5c032b..f814c8192 100644
--- a/host/lib/include/uhdlib/transport/tx_streamer_impl.hpp
+++ b/host/lib/include/uhdlib/transport/tx_streamer_impl.hpp
@@ -64,7 +64,6 @@ class tx_eov_data_wrapper
public:
tx_eov_data_wrapper(const uhd::tx_metadata_t& metadata)
: _eov_positions(metadata.eov_positions)
- , _eov_positions_size(metadata.eov_positions_size)
, _remaining(metadata.eov_positions_size)
, _read_pos(0)
{
@@ -89,7 +88,6 @@ public:
private:
size_t* _eov_positions;
- size_t _eov_positions_size;
size_t _remaining;
size_t _read_pos;
};