1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-06-10 02:24:10 +00:00

Fix building in Ubuntu 15.04

This commit is contained in:
Carles Fernandez 2017-02-27 15:22:47 +01:00
parent ea83a8145a
commit 8769e6e74d
2 changed files with 11 additions and 12 deletions

View File

@ -28,14 +28,13 @@
* ------------------------------------------------------------------------- * -------------------------------------------------------------------------
*/ */
#include "pulse_blanking_cc.h" #include "pulse_blanking_cc.h"
#include <cmath>
#include <complex>
#include <gnuradio/io_signature.h> #include <gnuradio/io_signature.h>
#include <math.h>
#include <volk/volk.h> #include <volk/volk.h>
#include <volk_gnsssdr/volk_gnsssdr.h> #include <volk_gnsssdr/volk_gnsssdr.h>
#include <complex>
pulse_blanking_cc_sptr make_pulse_blanking_cc(double Pfa) pulse_blanking_cc_sptr make_pulse_blanking_cc(double Pfa)
{ {

View File

@ -47,7 +47,7 @@ pulse_blanking_cc_sptr make_pulse_blanking_cc(double Pfa);
class pulse_blanking_cc : public gr::block class pulse_blanking_cc : public gr::block
{ {
private: private:
friend pulse_blanking_cc_sptr pulse_blanking_cc(double Pfa); friend pulse_blanking_cc_sptr make_pulse_blanking_cc(double Pfa);
double d_Pfa; double d_Pfa;
public: public:
pulse_blanking_cc(double Pfa); pulse_blanking_cc(double Pfa);