aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2019-01-09 16:24:01 -0800
committerBrent Stapleton <brent.stapleton@ettus.com>2019-01-09 18:00:32 -0800
commitf1d6d1e480ca873259c816c0bd2dac5eb7aecd5a (patch)
tree9eb889f96745dd3a8153c15262c013dd03888545
parent0e541ed60b0aca9916bac3ab7274d1d44438e2dd (diff)
downloaduhd-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.hpp2
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>