Imported Upstream version 3.2.2
[debian/gnuradio] / gnuradio-core / src / lib / filter / gr_fft_filter_fff.cc
index 865f8a1eb42fdb63a7618f570beb91fda0bc646c..57232f3fb2e354e1e4beeeb5f2af29294ce6ab13 100644 (file)
 #include <stdexcept>
 #include <gr_firdes.h>
 
+
+#include <cstdio>
 #include <iostream>
+#include <string.h>
 
 gr_fft_filter_fff_sptr gr_make_fft_filter_fff (int decimation, const std::vector<float> &taps)
 {
@@ -57,6 +60,7 @@ gr_fft_filter_fff::~gr_fft_filter_fff ()
   delete d_invfft;
 }
 
+#if 0
 static void 
 print_vector_complex(const std::string label, const std::vector<gr_complex> &x)
 {
@@ -74,6 +78,7 @@ print_vector_float(const std::string label, const std::vector<float> &x)
     std::cout << x[i] << " ";
   std::cout << "\n";
 }
+#endif
 
 void
 gr_fft_filter_fff::set_taps (const std::vector<float> &taps)