1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-12-14 20:20:35 +00:00

added missing std:: as suggested by clang-tidy

This commit is contained in:
Lenhart 2021-04-17 14:51:10 +02:00
parent 4f66603464
commit f9da05c783

View File

@ -272,7 +272,7 @@ void signal_generator_c::generate_codes()
{ {
for (unsigned int i = 0; i < vector_length_; i++) for (unsigned int i = 0; i < vector_length_; i++)
{ {
sampled_code_pilot_[sat][i] *= sqrt(std::pow(10.0F, CN0_dB_[sat] / 10.0F) / BW_BB_ / 2.0F); sampled_code_pilot_[sat][i] *= std::sqrt(std::pow(10.0F, CN0_dB_[sat] / 10.0F) / BW_BB_ / 2.0F);
} }
} }
} }
@ -313,7 +313,7 @@ void signal_generator_c::generate_codes()
{ {
for (unsigned int i = 0; i < vector_length_; i++) for (unsigned int i = 0; i < vector_length_; i++)
{ {
sampled_code_pilot_[sat][i] *= sqrt(std::pow(10.0F, CN0_dB_[sat] / 10.0F) / BW_BB_ / 2.0F); sampled_code_pilot_[sat][i] *= std::sqrt(std::pow(10.0F, CN0_dB_[sat] / 10.0F) / BW_BB_ / 2.0F);
} }
} }
} }