From cc6087f452c55ffb1396f1b172d3f6c501b1f5d4 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Tue, 15 Nov 2016 16:31:16 -0800 Subject: fixup! Remove all boost:: namespace prefix for uint32_t, int32_t etc. (fixed-width types) Now also removes the namespaces in examples/ --- host/examples/network_relay.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'host/examples/network_relay.cpp') diff --git a/host/examples/network_relay.cpp b/host/examples/network_relay.cpp index 0a67bbf09..b16bcaaa5 100644 --- a/host/examples/network_relay.cpp +++ b/host/examples/network_relay.cpp @@ -136,8 +136,8 @@ private: //perform sequence error detection on tx dsp data (can detect bad network cards) /* if (_port[4] == '7'){ - static boost::uint32_t next_seq; - const boost::uint32_t this_seq = ntohl(reinterpret_cast(&buff.front())[0]); + static uint32_t next_seq; + const uint32_t this_seq = ntohl(reinterpret_cast(&buff.front())[0]); if (next_seq != this_seq and this_seq != 0) std::cout << "S" << std::flush; next_seq = this_seq + 1; } -- cgit v1.2.3