diff --git a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_cc.cc b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_cc.cc index 42dd65633..de4e1e332 100644 --- a/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_cc.cc +++ b/src/algorithms/tracking/gnuradio_blocks/gps_l1_ca_dll_pll_tracking_cc.cc @@ -40,9 +40,6 @@ #include "tracking_discriminators.h" #include "CN_estimators.h" #include "GPS_L1_CA.h" -#ifdef GNSS_SDR_USE_BOOST_ROUND -#include -#endif #include "control_message_factory.h" #include #include @@ -209,11 +206,7 @@ void Gps_L1_Ca_Dll_Pll_Tracking_cc::start_tracking() T_prn_mod_seconds = T_chip_mod_seconds * GPS_L1_CA_CODE_LENGTH_CHIPS; T_prn_mod_samples = T_prn_mod_seconds * (float)d_fs_in; -#ifdef GNSS_SDR_USE_BOOST_ROUND d_next_prn_length_samples = round(T_prn_mod_samples); -#else - d_next_prn_length_samples = std::round(T_prn_mod_samples); -#endif float T_prn_true_seconds = GPS_L1_CA_CODE_LENGTH_CHIPS / GPS_L1_CA_CODE_RATE_HZ; float T_prn_true_samples = T_prn_true_seconds * (float)d_fs_in; @@ -281,7 +274,6 @@ void Gps_L1_Ca_Dll_Pll_Tracking_cc::update_local_code() tcode_chips = -rem_code_phase_chips; for (int i=0; i