From 99c2730bc9db270560671f2d7d173768465ed51f Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Mon, 31 Oct 2016 14:30:52 -0700 Subject: Remove all boost:: namespace prefix for uint32_t, int32_t etc. (fixed-width types) - Also removes all references to boost/cstdint.hpp and replaces it with stdint.h (The 'correct' replacement would be , but not all of our compilers support that). --- host/tests/sph_send_test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'host/tests/sph_send_test.cpp') diff --git a/host/tests/sph_send_test.cpp b/host/tests/sph_send_test.cpp index 9cd195c7e..39c7429db 100644 --- a/host/tests/sph_send_test.cpp +++ b/host/tests/sph_send_test.cpp @@ -56,12 +56,12 @@ public: void pop_front_packet( uhd::transport::vrt::if_packet_info_t &ifpi ){ - ifpi.num_packet_words32 = _lens.front()/sizeof(boost::uint32_t); + ifpi.num_packet_words32 = _lens.front()/sizeof(uint32_t); if (_end == "big"){ - uhd::transport::vrt::if_hdr_unpack_be(reinterpret_cast(_mems.front().get()), ifpi); + uhd::transport::vrt::if_hdr_unpack_be(reinterpret_cast(_mems.front().get()), ifpi); } if (_end == "little"){ - uhd::transport::vrt::if_hdr_unpack_le(reinterpret_cast(_mems.front().get()), ifpi); + uhd::transport::vrt::if_hdr_unpack_le(reinterpret_cast(_mems.front().get()), ifpi); } _mems.pop_front(); _lens.pop_front(); -- cgit v1.2.3