diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-01-09 16:24:01 -0800 |
---|---|---|
committer | Brent Stapleton <brent.stapleton@ettus.com> | 2019-01-09 18:00:32 -0800 |
commit | f1d6d1e480ca873259c816c0bd2dac5eb7aecd5a (patch) | |
tree | 9eb889f96745dd3a8153c15262c013dd03888545 | |
parent | 0e541ed60b0aca9916bac3ab7274d1d44438e2dd (diff) | |
download | uhd-f1d6d1e480ca873259c816c0bd2dac5eb7aecd5a.tar.gz uhd-f1d6d1e480ca873259c816c0bd2dac5eb7aecd5a.tar.bz2 uhd-f1d6d1e480ca873259c816c0bd2dac5eb7aecd5a.zip |
lib: experts: fixup for including Boost header
Header wasn't included until Boost 1.56.
Fixes 5c012cad7858 ("lib: experts: Add potentially missing but...")
-rw-r--r-- | host/lib/include/uhdlib/experts/expert_nodes.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/host/lib/include/uhdlib/experts/expert_nodes.hpp b/host/lib/include/uhdlib/experts/expert_nodes.hpp index 8fa183835..a540fc49d 100644 --- a/host/lib/include/uhdlib/experts/expert_nodes.hpp +++ b/host/lib/include/uhdlib/experts/expert_nodes.hpp @@ -12,7 +12,9 @@ #include <uhd/exception.hpp> #include <uhd/utils/dirty_tracked.hpp> #include <uhd/types/time_spec.hpp> +#if BOOST_VERSION >= 105600 #include <boost/core/noncopyable.hpp> +#endif #include <boost/function.hpp> #include <boost/thread/recursive_mutex.hpp> #include <boost/thread.hpp> |