mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-14 04:00:34 +00:00
make clang-tidy happy
This commit is contained in:
parent
06d1d2773b
commit
530684d241
@ -105,7 +105,10 @@ std::tuple<size_t, bool> TwoBitPackedFileSignalSource::itemTypeToSize()
|
||||
double TwoBitPackedFileSignalSource::packetsPerSample() const
|
||||
{
|
||||
auto packets = item_size() * 4.0;
|
||||
if (is_complex()) packets /= 2;
|
||||
if (is_complex())
|
||||
{
|
||||
packets /= 2;
|
||||
}
|
||||
return packets;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user