gr39: Switch to std::shared_ptr instead of boost::shared_ptr

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
This commit is contained in:
Sylvain Munaut 2021-01-08 11:36:44 +01:00
parent e9978be6cd
commit 18895c4a61
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ namespace gr {
float d_mag, d_phase;
public:
typedef boost::shared_ptr<fix_cc> sptr;
typedef std::shared_ptr<fix_cc> sptr;
static sptr make(float mag=0.0f, float phase=0.0f);

View File

@ -26,7 +26,7 @@ namespace gr {
float d_mag, d_phase;
public:
typedef boost::shared_ptr<optimize_c> sptr;
typedef std::shared_ptr<optimize_c> sptr;
static sptr make(int period=0);