1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-11-10 20:10:05 +00:00

make clang-format happy

This commit is contained in:
Marc Majoral 2024-07-25 09:44:21 +02:00
parent dadbbdf5d4
commit 40cc8de587
No known key found for this signature in database
GPG Key ID: 4CC7BE8C367C596C

View File

@ -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;