aboutsummaryrefslogtreecommitdiffstats
path: root/gr-fft
diff options
context:
space:
mode:
authorMarcus Müller <mmueller@gnuradio.org>2021-06-17 01:18:28 +0200
committerMartin Braun <martin@gnuradio.org>2021-09-07 06:46:35 -0700
commit82f18329e808d8bbf2f475aa0cf4f367175a855d (patch)
treead54fe38462f1f2e7232e1de60f3ed0cf3b3fc66 /gr-fft
parentruntime: include boost/format where used (diff)
downloadgnuradio-82f18329e808d8bbf2f475aa0cf4f367175a855d.tar.xz
gnuradio-82f18329e808d8bbf2f475aa0cf4f367175a855d.zip
modules: include boost/format where used
in the classic modules: audio blocks digital dtv fec fft filter qtgui trellis/fsm uhd video-sdl vocoder/freedv_rx Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
Diffstat (limited to 'gr-fft')
-rw-r--r--gr-fft/lib/fft.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-fft/lib/fft.cc b/gr-fft/lib/fft.cc
index 723935719..b111942e2 100644
--- a/gr-fft/lib/fft.cc
+++ b/gr-fft/lib/fft.cc
@@ -12,7 +12,7 @@
#include <gnuradio/gr_complex.h>
#include <gnuradio/sys_paths.h>
#include <fftw3.h>
-#include <volk/volk.h>
+#include <boost/format.hpp>
#ifdef _WIN32 // http://www.fftw.org/install/windows.html#DLLwisdom
static void my_fftw_write_char(char c, void* f) { fputc(c, (FILE*)f); }