diff options
author | Nicholas Corgan <nick.corgan@ettus.com> | 2016-03-21 09:13:45 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-03-21 14:57:59 -0700 |
commit | 603fb7aacdda208c4d38521f9eed81f61f6c7b9b (patch) | |
tree | 88121b39dc2dcfb954db8b66215e03d12ef6f9a0 /host/lib/usrp/cores | |
parent | 30c12d86a421deeeae69de8323a034ecb8c4e2fc (diff) | |
download | uhd-603fb7aacdda208c4d38521f9eed81f61f6c7b9b.tar.gz uhd-603fb7aacdda208c4d38521f9eed81f61f6c7b9b.tar.bz2 uhd-603fb7aacdda208c4d38521f9eed81f61f6c7b9b.zip |
Updated code to work for new minimum dependencies
* Removed code referencing now-unsupported versions of Boost
* Added <stdint.h> includes where needed
Diffstat (limited to 'host/lib/usrp/cores')
-rw-r--r-- | host/lib/usrp/cores/dsp_core_utils.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/cores/dsp_core_utils.hpp b/host/lib/usrp/cores/dsp_core_utils.hpp index 5d142f5bb..d5d43f236 100644 --- a/host/lib/usrp/cores/dsp_core_utils.hpp +++ b/host/lib/usrp/cores/dsp_core_utils.hpp @@ -18,7 +18,7 @@ #ifndef INCLUDED_LIBUHD_DSP_CORE_UTILS_HPP #define INCLUDED_LIBUHD_DSP_CORE_UTILS_HPP -#include <uhd/types/stdint.hpp> +#include <stdint.h> /*! For a requested frequency and sampling rate, return the * correct frequency word (to set the CORDIC) and the actual frequency. |