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/cast_test.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'host/tests/cast_test.cpp') diff --git a/host/tests/cast_test.cpp b/host/tests/cast_test.cpp index 6b8a4c527..1bd09e1a5 100644 --- a/host/tests/cast_test.cpp +++ b/host/tests/cast_test.cpp @@ -17,14 +17,14 @@ #include #include -#include +#include #include BOOST_AUTO_TEST_CASE(test_mac_addr){ std::string in = "0x0100"; - boost::uint16_t correct_result = 256; - boost::uint16_t x = uhd::cast::hexstr_cast(in); - //boost::uint16_t x = uhd::cast::hexstr_cast(in); + uint16_t correct_result = 256; + uint16_t x = uhd::cast::hexstr_cast(in); + //uint16_t x = uhd::cast::hexstr_cast(in); std::cout << "Testing hex -> uint16_t conversion. " << in << " == " << std::hex << x << "?" << std::endl; -- cgit v1.2.3