8 #ifndef INCLUDED_UHD_TYPES_ENDIANNESS_HPP     9 #define INCLUDED_UHD_TYPES_ENDIANNESS_HPP    16 #if BOOST_VERSION >= 105500    18 #    include <boost/predef/other/endian.h>    22 #    if BOOST_ENDIAN_BIG_BYTE    23 #        define UHD_BIG_ENDIAN    24 #    elif BOOST_ENDIAN_LITTLE_BYTE    25 #        define UHD_LITTLE_ENDIAN    27 #        error "Unsupported endianness!"    32 #    include <boost/detail/endian.hpp>    34 #    if defined(BOOST_BIG_ENDIAN)    35 #        define UHD_BIG_ENDIAN    36 #    elif defined(BOOST_LITTLE_ENDIAN)    37 #        define UHD_LITTLE_ENDIAN    39 #        error "Unsupported endianness!" 
Definition: build_info.hpp:13
 
endianness_t
Definition: endianness.hpp:47
 
Definition: endianness.hpp:47
 
Definition: endianness.hpp:47