diff options
author | Martin Braun <martin.braun@ettus.com> | 2018-04-26 13:13:32 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-05-02 17:01:21 -0700 |
commit | 5d9a7c92d3eb0a9cb719e6e6386d533da59a51db (patch) | |
tree | 024bda2ede2231784b55c48e1a23ab39fd97182d /host/include | |
parent | c52c0b69fc151c7596f9754e6b1e40dede531134 (diff) | |
download | uhd-5d9a7c92d3eb0a9cb719e6e6386d533da59a51db.tar.gz uhd-5d9a7c92d3eb0a9cb719e6e6386d533da59a51db.tar.bz2 uhd-5d9a7c92d3eb0a9cb719e6e6386d533da59a51db.zip |
lib: Purge use of boost::assign, except for uhd::dict
Replaced with initialization lists.
Note: uhd::dict does not work with initializer lists without making
changes to said data structure. This commit has no functional changes,
so keeping the boost::assigns for uhd::dict.
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/types/byte_vector.hpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/host/include/uhd/types/byte_vector.hpp b/host/include/uhd/types/byte_vector.hpp index d380e3531..9cf0be88c 100644 --- a/host/include/uhd/types/byte_vector.hpp +++ b/host/include/uhd/types/byte_vector.hpp @@ -8,15 +8,12 @@ #ifndef INCLUDED_UHD_TYPES_BYTE_VECTOR_HPP #define INCLUDED_UHD_TYPES_BYTE_VECTOR_HPP +#include <uhd/config.hpp> +#include <boost/range.hpp> #include <algorithm> #include <string> #include <vector> -#include <boost/assign.hpp> -#include <stdint.h> - -#include <uhd/config.hpp> - namespace uhd{ //! Byte vector used for I2C data passing and EEPROM parsing. |