From 52138314a4daa8140b4dabca5ca4a9ffc6a8ff84 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Tue, 29 Jan 2019 17:21:17 +0100 Subject: uhd: Replace all usage of boost::noncopyable with uhd::noncopyable This fixes the build errors that occur due to switching locations of noncopyable.hpp within Boost, and also allows us to remove boost::noncopyable in one fell swoop. --- host/lib/stream_python.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'host/lib/stream_python.hpp') diff --git a/host/lib/stream_python.hpp b/host/lib/stream_python.hpp index e07d120f1..0760edf1b 100644 --- a/host/lib/stream_python.hpp +++ b/host/lib/stream_python.hpp @@ -186,7 +186,7 @@ void export_stream() bp::class_< rx_streamer, boost::shared_ptr, - boost::noncopyable>("rx_streamer", "See: uhd::rx_streamer", bp::no_init) + uhd::noncopyable>("rx_streamer", "See: uhd::rx_streamer", bp::no_init) // Methods .def("recv" , &wrap_recv, overload_wrap_recv() ) @@ -198,7 +198,7 @@ void export_stream() bp::class_< tx_streamer, boost::shared_ptr, - boost::noncopyable>("tx_streamer", "See: uhd::tx_streamer", bp::no_init) + uhd::noncopyable>("tx_streamer", "See: uhd::tx_streamer", bp::no_init) // Methods .def("send" , &wrap_send, overload_wrap_send()) -- cgit v1.2.3