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>
This commit is contained in:
Sylvain Munaut 2021-01-08 17:04:01 +01:00
parent e914517110
commit e651f9b9c1
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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.