diff options
-rw-r--r-- | host/lib/include/uhdlib/experts/expert_nodes.hpp | 2 | ||||
-rw-r--r-- | host/lib/include/uhdlib/usrp/cores/gpio_atr_3000.hpp | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/host/lib/include/uhdlib/experts/expert_nodes.hpp b/host/lib/include/uhdlib/experts/expert_nodes.hpp index a540fc49d..1aa29b3a3 100644 --- a/host/lib/include/uhdlib/experts/expert_nodes.hpp +++ b/host/lib/include/uhdlib/experts/expert_nodes.hpp @@ -14,6 +14,8 @@ #include <uhd/types/time_spec.hpp> #if BOOST_VERSION >= 105600 #include <boost/core/noncopyable.hpp> +#else +#include <boost/noncopyable.hpp> #endif #include <boost/function.hpp> #include <boost/thread/recursive_mutex.hpp> diff --git a/host/lib/include/uhdlib/usrp/cores/gpio_atr_3000.hpp b/host/lib/include/uhdlib/usrp/cores/gpio_atr_3000.hpp index 30c7d6fb7..0e0f706b8 100644 --- a/host/lib/include/uhdlib/usrp/cores/gpio_atr_3000.hpp +++ b/host/lib/include/uhdlib/usrp/cores/gpio_atr_3000.hpp @@ -14,6 +14,11 @@ #include <uhdlib/usrp/gpio_defs.hpp> #include <uhd/types/wb_iface.hpp> #include <boost/shared_ptr.hpp> +#if BOOST_VERSION >= 105600 +#include <boost/core/noncopyable.hpp> +#else +#include <boost/noncopyable.hpp> +#endif namespace uhd { namespace usrp { namespace gpio_atr { |