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:
parent
4f66603464
commit
f9da05c783
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user