Changeset 5584 in ntrip for trunk/BNC/src/combination/bnccomb.cpp
- Timestamp:
- Nov 27, 2013, 6:03:17 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/combination/bnccomb.cpp
r5583 r5584 1162 1162 bncTime epoTime = itTime.next(); 1163 1163 QVector<cmbCorr*>& corrVec = _buffer[epoTime].corrs; 1164 1165 QVectorIterator<cmbCorr*> it(corrVec); 1164 QMutableVectorIterator<cmbCorr*> it(corrVec); 1166 1165 while (it.hasNext()) { 1167 1166 cmbCorr* corr = it.next(); 1168 1167 if (acName == corr->acName) { 1169 1170 } 1171 } 1172 } 1173 } 1168 delete corr; 1169 it.remove(); 1170 } 1171 } 1172 } 1173 }
Note:
See TracChangeset
for help on using the changeset viewer.