summaryrefslogtreecommitdiff
path: root/gr-fft
diff options
context:
space:
mode:
authorJosh Blum2012-05-15 15:53:27 -0700
committerJosh Blum2012-05-15 15:53:27 -0700
commit1befbf0d16d95037fb699f40845abbcb02e86d79 (patch)
treefae885be297386d11070a7dcf516cf156f240e25 /gr-fft
parentff3d467ba8bf8a3e21dd3dfd448262f6a77b3e4d (diff)
downloadgnuradio-1befbf0d16d95037fb699f40845abbcb02e86d79.tar.gz
gnuradio-1befbf0d16d95037fb699f40845abbcb02e86d79.tar.bz2
gnuradio-1befbf0d16d95037fb699f40845abbcb02e86d79.zip
fft: should not export for static class member
Diffstat (limited to 'gr-fft')
-rw-r--r--gr-fft/include/fft/fft_vcc.h2
-rw-r--r--gr-fft/include/fft/fft_vfc.h2
-rw-r--r--gr-fft/include/fft/goertzel_fc.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/gr-fft/include/fft/fft_vcc.h b/gr-fft/include/fft/fft_vcc.h
index 561ae858d..cb07b166d 100644
--- a/gr-fft/include/fft/fft_vcc.h
+++ b/gr-fft/include/fft/fft_vcc.h
@@ -40,7 +40,7 @@ namespace gr {
* \brief Compute forward or reverse FFT. complex vector in / complex vector out.
* \ingroup dft_blk
*/
- static FFT_API sptr make(int fft_size, bool forward,
+ static sptr make(int fft_size, bool forward,
const std::vector<float> &window,
bool shift=false, int nthreads=1);
diff --git a/gr-fft/include/fft/fft_vfc.h b/gr-fft/include/fft/fft_vfc.h
index fc48ceefe..ec441d66a 100644
--- a/gr-fft/include/fft/fft_vfc.h
+++ b/gr-fft/include/fft/fft_vfc.h
@@ -40,7 +40,7 @@ namespace gr {
* \brief Compute forward or reverse FFT. float vector in / complex vector out.
* \ingroup dft_blk
*/
- static FFT_API sptr make(int fft_size, bool forward,
+ static sptr make(int fft_size, bool forward,
const std::vector<float> &window,
int nthreads=1);
diff --git a/gr-fft/include/fft/goertzel_fc.h b/gr-fft/include/fft/goertzel_fc.h
index 4d3fa8dcf..5b3c8f1c4 100644
--- a/gr-fft/include/fft/goertzel_fc.h
+++ b/gr-fft/include/fft/goertzel_fc.h
@@ -40,7 +40,7 @@ namespace gr {
* \brief Goertzel single-bin DFT calculation.
* \ingroup dft_blk
*/
- static FFT_API sptr make(int rate, int len, float freq);
+ static sptr make(int rate, int len, float freq);
virtual void set_freq (float freq) = 0;