summaryrefslogtreecommitdiff
path: root/gr-fft/include
diff options
context:
space:
mode:
Diffstat (limited to 'gr-fft/include')
-rw-r--r--gr-fft/include/gnuradio/fft/ctrlport_probe_psd.h2
-rw-r--r--gr-fft/include/gnuradio/fft/fft_vcc.h2
-rw-r--r--gr-fft/include/gnuradio/fft/fft_vfc.h2
-rw-r--r--gr-fft/include/gnuradio/fft/goertzel_fc.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/gr-fft/include/gnuradio/fft/ctrlport_probe_psd.h b/gr-fft/include/gnuradio/fft/ctrlport_probe_psd.h
index 9f041a3a93..6238046918 100644
--- a/gr-fft/include/gnuradio/fft/ctrlport_probe_psd.h
+++ b/gr-fft/include/gnuradio/fft/ctrlport_probe_psd.h
@@ -31,7 +31,7 @@ namespace fft {
class FFT_API ctrlport_probe_psd : virtual public gr::sync_block
{
public:
- typedef boost::shared_ptr<ctrlport_probe_psd> sptr;
+ typedef std::shared_ptr<ctrlport_probe_psd> sptr;
/*!
* \brief Make a ControlPort probe block.
diff --git a/gr-fft/include/gnuradio/fft/fft_vcc.h b/gr-fft/include/gnuradio/fft/fft_vcc.h
index eb2ac2f81f..95d1f18553 100644
--- a/gr-fft/include/gnuradio/fft/fft_vcc.h
+++ b/gr-fft/include/gnuradio/fft/fft_vcc.h
@@ -48,7 +48,7 @@ class FFT_API fft_vcc : virtual public sync_block
{
public:
// gr::fft::fft_vcc::sptr
- typedef boost::shared_ptr<fft_vcc> sptr;
+ typedef std::shared_ptr<fft_vcc> sptr;
/*! \brief
* \param[in] fft_size N.
* \param[in] forward True performs FFT, False performs IFFT.
diff --git a/gr-fft/include/gnuradio/fft/fft_vfc.h b/gr-fft/include/gnuradio/fft/fft_vfc.h
index f9a10797ae..21859abe17 100644
--- a/gr-fft/include/gnuradio/fft/fft_vfc.h
+++ b/gr-fft/include/gnuradio/fft/fft_vfc.h
@@ -48,7 +48,7 @@ class FFT_API fft_vfc : virtual public sync_block
{
public:
// gr::fft::fft_vfc::sptr
- typedef boost::shared_ptr<fft_vfc> sptr;
+ typedef std::shared_ptr<fft_vfc> sptr;
/*! \brief
* \param[in] fft_size N.
diff --git a/gr-fft/include/gnuradio/fft/goertzel_fc.h b/gr-fft/include/gnuradio/fft/goertzel_fc.h
index 46e655facf..f3ff011a07 100644
--- a/gr-fft/include/gnuradio/fft/goertzel_fc.h
+++ b/gr-fft/include/gnuradio/fft/goertzel_fc.h
@@ -25,7 +25,7 @@ class FFT_API goertzel_fc : virtual public sync_decimator
{
public:
// gr::fft::goertzel_fc::sptr
- typedef boost::shared_ptr<goertzel_fc> sptr;
+ typedef std::shared_ptr<goertzel_fc> sptr;
static sptr make(int rate, int len, float freq);