From 40cc8de587700bef1c0cc6f8d6ed0e2499860a85 Mon Sep 17 00:00:00 2001 From: Marc Majoral Date: Thu, 25 Jul 2024 09:44:21 +0200 Subject: [PATCH] make clang-format happy --- .../signal_source/adapters/dma_signal_source_fpga.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/algorithms/signal_source/adapters/dma_signal_source_fpga.cc b/src/algorithms/signal_source/adapters/dma_signal_source_fpga.cc index a560fd419..bba301459 100644 --- a/src/algorithms/signal_source/adapters/dma_signal_source_fpga.cc +++ b/src/algorithms/signal_source/adapters/dma_signal_source_fpga.cc @@ -123,11 +123,6 @@ DMASignalSourceFPGA::DMASignalSourceFPGA(const ConfigurationInterface *configura if (samples_ == 0) // read all file { - /*! - * 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 the last 100 milliseconds, and enable always the - * valve block - */ std::ifstream file(filename0_.c_str(), std::ios::in | std::ios::binary | std::ios::ate); std::ifstream::pos_type size;