Imported Upstream version 3.2.2
[debian/gnuradio] / gnuradio-core / src / lib / filter / gr_fft_filter_ccc.cc
index a4e6c9919f54e705410ba9ced649566761dd5393..3dd40d56dcd3c7a31a9f3b1bcc698b97155e30f3 100644 (file)
@@ -37,7 +37,9 @@
 #include <stdexcept>
 #include <gr_firdes.h>
 
+#include <cstdio>
 #include <iostream>
+#include <string.h>
 
 gr_fft_filter_ccc_sptr gr_make_fft_filter_ccc (int decimation, const std::vector<gr_complex> &taps)
 {
@@ -65,6 +67,7 @@ gr_fft_filter_ccc::~gr_fft_filter_ccc ()
   delete d_invfft;
 }
 
+#if 0
 static void 
 print_vector_complex(const std::string label, const std::vector<gr_complex> &x)
 {
@@ -73,6 +76,7 @@ print_vector_complex(const std::string label, const std::vector<gr_complex> &x)
     std::cout << x[i] << " ";
   std::cout << "\n";
 }
+#endif
 
 void
 gr_fft_filter_ccc::set_taps (const std::vector<gr_complex> &taps)