From e651f9b9c1588f2de65f830cf84aedaca7d98794 Mon Sep 17 00:00:00 2001 From: Sylvain Munaut Date: Fri, 8 Jan 2021 17:04:01 +0100 Subject: [PATCH] gr-fosphor: Switch to std::shared_ptr instead of boost::shared_ptr Part of GNURadio 3.9 migration Signed-off-by: Sylvain Munaut --- include/gnuradio/fosphor/glfw_sink_c.h | 2 +- include/gnuradio/fosphor/qt_sink_c.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/gnuradio/fosphor/glfw_sink_c.h b/include/gnuradio/fosphor/glfw_sink_c.h index e4faa23..1648ea9 100644 --- a/include/gnuradio/fosphor/glfw_sink_c.h +++ b/include/gnuradio/fosphor/glfw_sink_c.h @@ -24,7 +24,7 @@ namespace gr { class GR_FOSPHOR_API glfw_sink_c : virtual public base_sink_c { public: - typedef boost::shared_ptr sptr; + typedef std::shared_ptr sptr; /*! * \brief Return a shared_ptr to a new instance of fosphor::glfw_sink_c. diff --git a/include/gnuradio/fosphor/qt_sink_c.h b/include/gnuradio/fosphor/qt_sink_c.h index e75cf7f..4c6ff57 100644 --- a/include/gnuradio/fosphor/qt_sink_c.h +++ b/include/gnuradio/fosphor/qt_sink_c.h @@ -27,7 +27,7 @@ namespace gr { class GR_FOSPHOR_API qt_sink_c : virtual public base_sink_c { public: - typedef boost::shared_ptr sptr; + typedef std::shared_ptr sptr; /*! * \brief Return a shared_ptr to a new instance of fosphor::qt_sink_c.