mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-14 20:20:35 +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
|
double TwoBitPackedFileSignalSource::packetsPerSample() const
|
||||||
{
|
{
|
||||||
auto packets = item_size() * 4.0;
|
auto packets = item_size() * 4.0;
|
||||||
if (is_complex()) packets /= 2;
|
if (is_complex())
|
||||||
|
{
|
||||||
|
packets /= 2;
|
||||||
|
}
|
||||||
return packets;
|
return packets;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user