aboutsummaryrefslogtreecommitdiffstats
path: root/host/examples/network_relay.cpp
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2016-11-15 16:31:16 -0800
committerMartin Braun <martin.braun@ettus.com>2016-11-15 16:31:18 -0800
commitcc6087f452c55ffb1396f1b172d3f6c501b1f5d4 (patch)
treefda0114cafd5e7738a22070558a5475dc7ac308b /host/examples/network_relay.cpp
parent69ad966a29575679a9ac77975b3352ba29a68139 (diff)
downloaduhd-cc6087f452c55ffb1396f1b172d3f6c501b1f5d4.tar.gz
uhd-cc6087f452c55ffb1396f1b172d3f6c501b1f5d4.tar.bz2
uhd-cc6087f452c55ffb1396f1b172d3f6c501b1f5d4.zip
fixup! Remove all boost:: namespace prefix for uint32_t, int32_t etc. (fixed-width types)
Now also removes the namespaces in examples/
Diffstat (limited to 'host/examples/network_relay.cpp')
-rw-r--r--host/examples/network_relay.cpp4
1 files changed, 2 insertions, 2 deletions
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<const boost::uint32_t *>(&buff.front())[0]);
+ static uint32_t next_seq;
+ const uint32_t this_seq = ntohl(reinterpret_cast<const uint32_t *>(&buff.front())[0]);
if (next_seq != this_seq and this_seq != 0) std::cout << "S" << std::flush;
next_seq = this_seq + 1;
}