1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-01-18 21:23:02 +00:00

Always initialize members

This commit is contained in:
Carles Fernandez 2021-03-28 19:16:11 +02:00
parent e262dfc315
commit 846fc0b15a

View File

@ -126,16 +126,16 @@ private:
std::vector<uint8_t> d_genpoly_coeff; // used for encoding
std::vector<uint8_t> d_genpoly_index; // used for encoding
size_t d_data_in_block; // number of information symbols in a block
size_t d_data_in_block{}; // number of information symbols in a block
int d_nroots; // number of parity symbols in a block
int d_prim; // The primitive root of the generator poly
int d_pad; // the number of pad symbols in a block
int d_iprim; // prim-th root of 1, index form
int d_fcr; // first consecutive root
int d_nroots{}; // number of parity symbols in a block
int d_prim{}; // The primitive root of the generator poly
int d_pad{}; // the number of pad symbols in a block
int d_iprim{}; // prim-th root of 1, index form
int d_fcr{}; // first consecutive root
uint8_t d_min_poly; // primitive polynomial
uint8_t d_a0; // auxiliar variable
uint8_t d_min_poly{}; // primitive polynomial
uint8_t d_a0{}; // auxiliar variable
};
/** \} */