From 6657e35a5207c8f387b7561b7d406537665ec4a8 Mon Sep 17 00:00:00 2001 From: Scott Giese Date: Sun, 26 Dec 2021 20:18:00 -0600 Subject: [PATCH] Best practice --- src/ATC/atc_mgr.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ATC/atc_mgr.cxx b/src/ATC/atc_mgr.cxx index 8ccdb91e7..927d1a254 100644 --- a/src/ATC/atc_mgr.cxx +++ b/src/ATC/atc_mgr.cxx @@ -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); } }