Make clang-tidy happy

This commit is contained in:
Carles Fernandez 2023-09-15 11:01:11 +02:00
parent 3d1b5b2214
commit 7781d3c3b4
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
1 changed files with 4 additions and 1 deletions

View File

@ -722,7 +722,10 @@ int hybrid_observables_gs::general_work(int noutput_items __attribute__((unused)
{
if (std::string(in[n][m].Signal, 2) == std::string("E6"))
{
if (d_conf.enable_E6 == false) continue;
if (d_conf.enable_E6 == false)
{
continue;
}
}
if (d_gnss_synchro_history->size(n) > 0)
{