1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-11-11 21:03:07 +00:00

Apply clang-tidy check readability-else-after-return

This commit is contained in:
Carles Fernandez
2019-08-04 13:15:03 +02:00
parent 2e93dbe8dc
commit 070996cdb4
11 changed files with 33 additions and 64 deletions

View File

@@ -4241,7 +4241,7 @@ double satwavelen(int sat, int frq, const nav_t *nav)
{
return SPEED_OF_LIGHT / FREQ8; /* E5a+b */
}
else if (frq == 6)
if (frq == 6)
{
return SPEED_OF_LIGHT / FREQ9; /* S */
}