From 4bc4fb9988875263de67427bb8645536d722f6c1 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 19 Mar 2019 19:53:51 +0100 Subject: [PATCH] Remove misleading comment --- .../tracking/libs/cpu_multicorrelator_real_codes.cc | 5 +++-- .../tracking/libs/cpu_multicorrelator_real_codes.h | 3 +-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/algorithms/tracking/libs/cpu_multicorrelator_real_codes.cc b/src/algorithms/tracking/libs/cpu_multicorrelator_real_codes.cc index 46475c286..4bd70cde6 100644 --- a/src/algorithms/tracking/libs/cpu_multicorrelator_real_codes.cc +++ b/src/algorithms/tracking/libs/cpu_multicorrelator_real_codes.cc @@ -125,7 +125,7 @@ void Cpu_Multicorrelator_Real_Codes::update_local_code(int correlator_length_sam } } -// Overload Carrier_wipeoff_multicorrelator_resampler to ensure back compatibility + bool Cpu_Multicorrelator_Real_Codes::Carrier_wipeoff_multicorrelator_resampler( float rem_carrier_phase_in_rad, float phase_step_rad, @@ -150,7 +150,8 @@ bool Cpu_Multicorrelator_Real_Codes::Carrier_wipeoff_multicorrelator_resampler( } return true; } -// Overload Carrier_wipeoff_multicorrelator_resampler to ensure back compatibility + + bool Cpu_Multicorrelator_Real_Codes::Carrier_wipeoff_multicorrelator_resampler( float rem_carrier_phase_in_rad, float phase_step_rad, diff --git a/src/algorithms/tracking/libs/cpu_multicorrelator_real_codes.h b/src/algorithms/tracking/libs/cpu_multicorrelator_real_codes.h index ecaad4a00..48a94506d 100644 --- a/src/algorithms/tracking/libs/cpu_multicorrelator_real_codes.h +++ b/src/algorithms/tracking/libs/cpu_multicorrelator_real_codes.h @@ -52,7 +52,6 @@ public: bool set_local_code_and_taps(int code_length_chips, const float *local_code_in, float *shifts_chips); bool set_input_output_vectors(std::complex *corr_out, const std::complex *sig_in); void update_local_code(int correlator_length_samples, float rem_code_phase_chips, float code_phase_step_chips, float code_phase_rate_step_chips = 0.0); - // Overload Carrier_wipeoff_multicorrelator_resampler to ensure back compatibility bool Carrier_wipeoff_multicorrelator_resampler(float rem_carrier_phase_in_rad, float phase_step_rad, float phase_rate_step_rad, float rem_code_phase_chips, float code_phase_step_chips, float code_phase_rate_step_chips, int signal_length_samples); bool Carrier_wipeoff_multicorrelator_resampler(float rem_carrier_phase_in_rad, float phase_step_rad, float rem_code_phase_chips, float code_phase_step_chips, float code_phase_rate_step_chips, int signal_length_samples); bool free(); @@ -70,4 +69,4 @@ private: }; -#endif /* CPU_MULTICORRELATOR_REAL_CODES_H_ */ +#endif /* GNSS_SDR_CPU_MULTICORRELATOR_REAL_CODES_H_ */