1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-04-02 16:57:03 +00:00

Avoid warning

This commit is contained in:
Carles Fernandez 2018-11-10 19:23:13 +01:00
parent 0abb84b9a4
commit a7f39c9470
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -905,6 +905,10 @@ bool gnss_sdr_supl_client::read_gal_almanac_from_gsa(const std::string file_name
}
return true;
#else
if (file_name.empty())
{
// avoid warning
}
return false;
#endif
}