diff options
Diffstat (limited to 'gnuradio-runtime/include/gnuradio/messages/msg_producer.h')
-rw-r--r-- | gnuradio-runtime/include/gnuradio/messages/msg_producer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-runtime/include/gnuradio/messages/msg_producer.h b/gnuradio-runtime/include/gnuradio/messages/msg_producer.h index 88c80f08d9..6152bf4473 100644 --- a/gnuradio-runtime/include/gnuradio/messages/msg_producer.h +++ b/gnuradio-runtime/include/gnuradio/messages/msg_producer.h @@ -13,7 +13,7 @@ #include <gnuradio/api.h> #include <pmt/pmt.h> -#include <boost/shared_ptr.hpp> +#include <memory> namespace gr { namespace messages { @@ -33,7 +33,7 @@ public: virtual pmt::pmt_t retrieve() = 0; }; -typedef boost::shared_ptr<msg_producer> msg_producer_sptr; +typedef std::shared_ptr<msg_producer> msg_producer_sptr; } /* namespace messages */ } /* namespace gr */ |