From 835e799770853a36f6b877e486b91d06414aeb39 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Mon, 18 Oct 2021 18:24:07 +0200 Subject: [PATCH] Fixes for clang-format 13 --- src/algorithms/signal_source/adapters/file_source_base.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/algorithms/signal_source/adapters/file_source_base.cc b/src/algorithms/signal_source/adapters/file_source_base.cc index 72758309a..1e868a2ae 100644 --- a/src/algorithms/signal_source/adapters/file_source_base.cc +++ b/src/algorithms/signal_source/adapters/file_source_base.cc @@ -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(std::ceil(0.002 * sampling_frequency())); DLOG(INFO) << "Total samples in the file= " << n_samples;