aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/b200/b200_cores.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/usrp/b200/b200_cores.hpp')
-rw-r--r--host/lib/usrp/b200/b200_cores.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/host/lib/usrp/b200/b200_cores.hpp b/host/lib/usrp/b200/b200_cores.hpp
index 7dabb66e9..324938a73 100644
--- a/host/lib/usrp/b200/b200_cores.hpp
+++ b/host/lib/usrp/b200/b200_cores.hpp
@@ -12,13 +12,13 @@
#include <uhd/utils/noncopyable.hpp>
#include <uhdlib/usrp/cores/spi_core_3000.hpp>
#include <uhdlib/usrp/common/adf4001_ctrl.hpp>
-#include <boost/shared_ptr.hpp>
+#include <memory>
#include <mutex>
class b200_local_spi_core : uhd::noncopyable, public uhd::spi_iface {
public:
- typedef boost::shared_ptr<b200_local_spi_core> sptr;
+ typedef std::shared_ptr<b200_local_spi_core> sptr;
enum perif_t {
CODEC, PLL
@@ -47,7 +47,7 @@ private:
class b200_ref_pll_ctrl : public uhd::usrp::adf4001_ctrl {
public:
- typedef boost::shared_ptr<b200_ref_pll_ctrl> sptr;
+ typedef std::shared_ptr<b200_ref_pll_ctrl> sptr;
b200_ref_pll_ctrl(b200_local_spi_core::sptr spi);
virtual void set_lock_to_ext_ref(bool external);