1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-09-29 15:30:52 +00:00

Fix comparison

This commit is contained in:
Carles Fernandez 2019-04-20 19:16:40 +02:00
parent f436c3d9bd
commit b499983526
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D

View File

@ -116,7 +116,7 @@ public:
std::vector<Gnss_Synchro> vgs;
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);
Gnss_Synchro gs = Gnss_Synchro();