Ignore:
Timestamp:
Sep 23, 2013, 10:11:50 AM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GnssCenter/monitor/monitor.cpp

    r5497 r5499  
    303303          for (unsigned jj = 0; jj < _results->size(); jj++) {
    304304            const t_thriftResult* result = _results->at(jj);
    305             for (unsigned is = 0; is < result->_prns.size(); is++) {
    306               if (result->_prns[is] == sat->_prn) {
    307                 numSta += 1;
    308               }
     305            if (result->_prns.find(sat->_prn) != result->_prns.end()) {
     306              numSta += 1;
    309307            }
    310308          }
Note: See TracChangeset for help on using the changeset viewer.