diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-01-09 09:17:07 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-01-09 09:17:07 -0800 |
commit | 5c012cad7858cadcaa85ec295080f3c8b21fdee0 (patch) | |
tree | bc7c2f236b625aa9a145d09041a2c382c8d60136 | |
parent | a3da15e222201f5316fe9a835668fe228ab9caa4 (diff) | |
download | uhd-5c012cad7858cadcaa85ec295080f3c8b21fdee0.tar.gz uhd-5c012cad7858cadcaa85ec295080f3c8b21fdee0.tar.bz2 uhd-5c012cad7858cadcaa85ec295080f3c8b21fdee0.zip |
lib: experts: Add potentially missing but sometimes inferred include
This adds an include for boost/core/noncopyable.hpp. Without it, builds
would potentially fail on Boost 1.69++.
-rw-r--r-- | host/lib/include/uhdlib/experts/expert_nodes.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/host/lib/include/uhdlib/experts/expert_nodes.hpp b/host/lib/include/uhdlib/experts/expert_nodes.hpp index 697ca19c3..8fa183835 100644 --- a/host/lib/include/uhdlib/experts/expert_nodes.hpp +++ b/host/lib/include/uhdlib/experts/expert_nodes.hpp @@ -12,6 +12,7 @@ #include <uhd/exception.hpp> #include <uhd/utils/dirty_tracked.hpp> #include <uhd/types/time_spec.hpp> +#include <boost/core/noncopyable.hpp> #include <boost/function.hpp> #include <boost/thread/recursive_mutex.hpp> #include <boost/thread.hpp> |