diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-01-14 13:34:13 -0800 |
---|---|---|
committer | Brent Stapleton <brent.stapleton@ettus.com> | 2019-01-15 11:32:35 -0800 |
commit | 66df76097953ecd3ea7e0154049da949f2306743 (patch) | |
tree | 3e537c462207dbe0cf3880730465307bd447478d /host | |
parent | 8027df7a221fc0578495b7426d8318bb878fc2b8 (diff) | |
download | uhd-66df76097953ecd3ea7e0154049da949f2306743.tar.gz uhd-66df76097953ecd3ea7e0154049da949f2306743.tar.bz2 uhd-66df76097953ecd3ea7e0154049da949f2306743.zip |
includes: Make sure BOOST_VERSION is always available
Boost changed the includes, and boost/version.hpp was being implicitly
imported. This makes the include explicit.
Diffstat (limited to 'host')
-rw-r--r-- | host/include/uhd/config.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/host/include/uhd/config.hpp b/host/include/uhd/config.hpp index 0f619c94a..e7b48e5d8 100644 --- a/host/include/uhd/config.hpp +++ b/host/include/uhd/config.hpp @@ -9,6 +9,7 @@ #define INCLUDED_UHD_CONFIG_HPP #include <boost/config.hpp> +#include <boost/version.hpp> #ifdef BOOST_MSVC // suppress warnings |