aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/transport/chdr.cpp
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2019-01-14 13:49:05 -0800
committerBrent Stapleton <brent.stapleton@ettus.com>2019-01-21 14:00:34 -0800
commitb459e02eedf358ef564020d698a9d96b711bf14e (patch)
tree6319539db3d01787975c74794cdcf60ebfa948a8 /host/lib/transport/chdr.cpp
parent764c5cd8087b560d4ef36679c82f7f8b25a6642b (diff)
downloaduhd-b459e02eedf358ef564020d698a9d96b711bf14e.tar.gz
uhd-b459e02eedf358ef564020d698a9d96b711bf14e.tar.bz2
uhd-b459e02eedf358ef564020d698a9d96b711bf14e.zip
endianness: Replace Boost macros with custom ones
Boost changed the macros for endianness identification in 1.69, and the deprecation warning is a pretty noisy one during compilation. This abstracts away the Boost macro, so we have two UHD macros, UHD_BIG_ENDIAN and UHD_LITTLE_ENDIAN. They indicate big and little endian byte order.
Diffstat (limited to 'host/lib/transport/chdr.cpp')
-rw-r--r--host/lib/transport/chdr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/transport/chdr.cpp b/host/lib/transport/chdr.cpp
index ff3b6475a..312cca318 100644
--- a/host/lib/transport/chdr.cpp
+++ b/host/lib/transport/chdr.cpp
@@ -10,7 +10,7 @@
#include <uhd/utils/byteswap.hpp>
// define the endian macros to convert integers
-#ifdef BOOST_BIG_ENDIAN
+#ifdef UHD_BIG_ENDIAN
# define BE_MACRO(x) (x)
# define LE_MACRO(x) uhd::byteswap(x)
#else