mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-14 20:20:35 +00:00
Fix comparison
This commit is contained in:
parent
f436c3d9bd
commit
b499983526
@ -116,7 +116,7 @@ public:
|
|||||||
std::vector<Gnss_Synchro> vgs;
|
std::vector<Gnss_Synchro> vgs;
|
||||||
vgs.reserve(obs.observable_size());
|
vgs.reserve(obs.observable_size());
|
||||||
|
|
||||||
for (uint32_t i = 0; i < obs.observable_size(); ++i)
|
for (int i = 0; i < obs.observable_size(); ++i)
|
||||||
{
|
{
|
||||||
const gnss_sdr::GnssSynchro& gs_read = obs.observable(i);
|
const gnss_sdr::GnssSynchro& gs_read = obs.observable(i);
|
||||||
Gnss_Synchro gs = Gnss_Synchro();
|
Gnss_Synchro gs = Gnss_Synchro();
|
||||||
|
Loading…
Reference in New Issue
Block a user