aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/include/uhdlib/rfnoc/rfnoc_device.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/include/uhdlib/rfnoc/rfnoc_device.hpp')
-rw-r--r--host/lib/include/uhdlib/rfnoc/rfnoc_device.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/include/uhdlib/rfnoc/rfnoc_device.hpp b/host/lib/include/uhdlib/rfnoc/rfnoc_device.hpp
index cbb9aa120..42872ba43 100644
--- a/host/lib/include/uhdlib/rfnoc/rfnoc_device.hpp
+++ b/host/lib/include/uhdlib/rfnoc/rfnoc_device.hpp
@@ -12,7 +12,7 @@
#include <uhd/rfnoc/mb_controller.hpp>
#include <uhdlib/rfnoc/client_zero.hpp>
#include <uhdlib/rfnoc/mb_iface.hpp>
-#include <boost/shared_ptr.hpp>
+#include <memory>
namespace uhd { namespace rfnoc { namespace detail {
@@ -21,7 +21,7 @@ namespace uhd { namespace rfnoc { namespace detail {
class rfnoc_device : public uhd::device
{
public:
- using sptr = boost::shared_ptr<rfnoc_device>; // FIXME make std::shared_ptr when
+ using sptr = std::shared_ptr<rfnoc_device>; // FIXME make std::shared_ptr when
// uhd::device is ready
rfnoc_device()