Changeset 7169 in ntrip for trunk/BNC/src/rinex/rnxnavfile.cpp


Ignore:
Timestamp:
Aug 5, 2015, 2:29:18 PM (9 years ago)
Author:
stuerze
Message:

harmonization of data type for SSR IOD

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/rnxnavfile.cpp

    r7055 r7169  
    212212////////////////////////////////////////////////////////////////////////////
    213213t_eph* t_rnxNavFile::getNextEph(const bncTime& tt,
    214                                 const QMap<QString, unsigned long>* corrIODs) {
     214                                const QMap<QString, unsigned int>* corrIODs) {
    215215
    216216  // Get Ephemeris according to IOD
    217217  // ------------------------------
    218218  if (corrIODs) {
    219     QMapIterator<QString, unsigned long> itIOD(*corrIODs);
     219    QMapIterator<QString, unsigned int> itIOD(*corrIODs);
    220220    while (itIOD.hasNext()) {
    221221      itIOD.next();
    222222      QString prn = itIOD.key();
    223       unsigned long iod = itIOD.value();
     223      unsigned int iod = itIOD.value();
    224224      vector<t_eph*>::iterator it = _ephs.begin();
    225225      while (it != _ephs.end()) {
Note: See TracChangeset for help on using the changeset viewer.