diff options
author | Martin Braun <martin.braun@ettus.com> | 2021-01-08 16:57:29 +0100 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-03-04 08:18:41 -0600 |
commit | a8223f8dea40840719143c5490bd4de97bd132b7 (patch) | |
tree | 5ea2b35f636944955239b35707ea3c5281d1d84a /host/lib/include | |
parent | bfd184b879c1a0878f863d859a74c8e010848f12 (diff) | |
download | uhd-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.hpp | 2 |
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; }; |