1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-12-15 04:48:07 +00:00

Proper usage of nullptr

This commit is contained in:
Carles Fernandez
2025-08-08 11:08:21 +02:00
parent f6173c2925
commit eb72538b73

View File

@@ -959,7 +959,7 @@ std::string get_beidou_time_corr_line(const Beidou_Dnav_Utc_Model& utc_model)
std::string get_glonass_time_corr_line(const Glonass_Gnav_Utc_Model& utc_model)
{
return get_time_corr_line("GLUT", utc_model.d_tau_c, 0.0, 0, 0);
return get_time_corr_line("GLUT", utc_model.d_tau_c, 0.0, nullptr, nullptr);
}
std::string get_gps_to_galileo_time_corr_line(const Galileo_Utc_Model& utc_model)
@@ -969,7 +969,7 @@ std::string get_gps_to_galileo_time_corr_line(const Galileo_Utc_Model& utc_model
std::string get_glonass_to_gps_time_corr_line(const Glonass_Gnav_Utc_Model& utc_model)
{
return get_time_corr_line("GLGP", utc_model.d_tau_gps, 0.0, 0, 0);
return get_time_corr_line("GLGP", utc_model.d_tau_gps, 0.0, nullptr, nullptr);
}
std::string get_leap_second_line(const Gps_Utc_Model& utc_model)