1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-22 21:13:15 +00:00

Fixes for clang-format 13

This commit is contained in:
Carles Fernandez 2021-10-18 18:24:07 +02:00
parent a805940bd7
commit 835e799770
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -352,10 +352,10 @@ size_t FileSourceBase::computeSamplesInFile() const
auto to_skip = samplesToSkip();
/*!
* BUG workaround: The GNU Radio file source does not stop the receiver after reaching the End of File.
* A possible solution is to compute the file length in samples using file size, excluding at least
* the last 2 milliseconds, and enable always the valve block
*/
* BUG workaround: The GNU Radio file source does not stop the receiver after reaching the End of File.
* A possible solution is to compute the file length in samples using file size, excluding at least
* the last 2 milliseconds, and enable always the valve block
*/
auto tail = static_cast<size_t>(std::ceil(0.002 * sampling_frequency()));
DLOG(INFO) << "Total samples in the file= " << n_samples;