aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSylvain Munaut <tnt@246tNt.com>2021-01-08 17:04:01 +0100
committerSylvain Munaut <tnt@246tNt.com>2021-01-08 17:40:04 +0100
commite651f9b9c1588f2de65f830cf84aedaca7d98794 (patch)
treec7c9ad2a7b820e2aedc45db21802b1d7ac98461f /include
parente914517110547b476ba31c115cbe660a1074a590 (diff)
gr-fosphor: Switch to std::shared_ptr instead of boost::shared_ptr
Part of GNURadio 3.9 migration Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Diffstat (limited to 'include')
-rw-r--r--include/gnuradio/fosphor/glfw_sink_c.h2
-rw-r--r--include/gnuradio/fosphor/qt_sink_c.h2
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<glfw_sink_c> sptr;
+ typedef std::shared_ptr<glfw_sink_c> 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<qt_sink_c> sptr;
+ typedef std::shared_ptr<qt_sink_c> sptr;
/*!
* \brief Return a shared_ptr to a new instance of fosphor::qt_sink_c.