1
0
Fork 0

Best practice

This commit is contained in:
Scott Giese 2021-12-26 20:18:00 -06:00
parent e38fb0c440
commit 6657e35a52

View file

@ -403,7 +403,7 @@ void FGATCManager::update ( double time ) {
}
// update the active ATC stations
for (AtcVecIterator atc = activeStations.begin(); atc != activeStations.end(); atc++) {
for (AtcVecIterator atc = activeStations.begin(); atc != activeStations.end(); ++atc) {
(*atc)->update(time);
}
}