1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-11-06 10:13:04 +00:00

Fix bugprone-too-small-loop-variable clang-tidy check warnings

This commit is contained in:
Carles Fernandez
2019-08-24 17:34:12 +02:00
parent d36e9e431c
commit df05c7418e
34 changed files with 103 additions and 102 deletions

View File

@@ -155,7 +155,7 @@ void GNSSFlowgraph::connect()
}
// Signal Source > Signal conditioner >
for (unsigned int i = 0; i < sig_conditioner_.size(); i++)
for (size_t i = 0; i < sig_conditioner_.size(); i++)
{
if (configuration_->property(sig_conditioner_.at(i)->role() + ".enable_FPGA", false) == false)
{
@@ -984,7 +984,7 @@ void GNSSFlowgraph::disconnect()
}
// Signal Source > Signal conditioner >
for (unsigned int i = 0; i < sig_conditioner_.size(); i++)
for (size_t i = 0; i < sig_conditioner_.size(); i++)
{
try
{