1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-24 05:53:16 +00:00

ensuring that members are initialized at the constructor

This commit is contained in:
Carles Fernandez 2015-05-29 20:23:13 +02:00
parent 6229ad0d22
commit 877192ed76

View File

@ -137,6 +137,13 @@ galileo_e5a_noncoherentIQ_acquisition_caf_cc::galileo_e5a_noncoherentIQ_acquisit
d_magnitudeQB = 0;
}
}
else
{
d_fft_code_I_B = 0;
d_magnitudeIB = 0;
d_fft_code_Q_B = 0;
d_magnitudeQB = 0;
}
// Direct FFT
d_fft_if = new gr::fft::fft_complex(d_fft_size, true);