From 6ba395969c6cd76f8383f71a61b9739271fa64e7 Mon Sep 17 00:00:00 2001 From: torsten Date: Fri, 21 Aug 2009 14:53:46 +0000 Subject: [PATCH] warning fixes --- src/ATCDCL/ground.cxx | 4 ++-- src/ATCDCL/tower.cxx | 20 ++++++++++---------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/ATCDCL/ground.cxx b/src/ATCDCL/ground.cxx index db7b9abca..08a320613 100644 --- a/src/ATCDCL/ground.cxx +++ b/src/ATCDCL/ground.cxx @@ -376,8 +376,8 @@ void FGGround::DoRwyDetails() { } // move to the +l end/center of the runway //cout << "Runway center is at " << runway._lon << ", " << runway._lat << '\n'; - double tshlon, tshlat, tshr; - double tolon, tolat, tor; + double tshlon = 0.0, tshlat = 0.0, tshr = 0.0; + double tolon = 0.0, tolat = 0.0, tor = 0.0; rwy.length = runway->lengthM(); geo_direct_wgs_84 ( aptElev, runway->latitude(), runway->longitude(), other_way, rwy.length / 2.0 - 25.0, &tshlat, &tshlon, &tshr ); diff --git a/src/ATCDCL/tower.cxx b/src/ATCDCL/tower.cxx index e8d0b0db4..1b92eaa16 100644 --- a/src/ATCDCL/tower.cxx +++ b/src/ATCDCL/tower.cxx @@ -71,13 +71,13 @@ TowerPlaneRec::TowerPlaneRec() : instructedToGoAround(false), onRwy(false), nextOnRwy(false), + gearWasUp(false), + gearUpReported(false), vfrArrivalReported(false), vfrArrivalAcknowledged(false), opType(TTT_UNKNOWN), leg(LEG_UNKNOWN), landingType(AIP_LT_UNKNOWN), - gearWasUp(false), - gearUpReported(false), isUser(false) { plane.callsign = "UNKNOWN"; @@ -101,13 +101,13 @@ TowerPlaneRec::TowerPlaneRec(const PlaneRec& p) : instructedToGoAround(false), onRwy(false), nextOnRwy(false), + gearWasUp(false), + gearUpReported(false), vfrArrivalReported(false), vfrArrivalAcknowledged(false), opType(TTT_UNKNOWN), leg(LEG_UNKNOWN), landingType(AIP_LT_UNKNOWN), - gearWasUp(false), - gearUpReported(false), isUser(false) { plane = p; @@ -131,13 +131,13 @@ TowerPlaneRec::TowerPlaneRec(const SGGeod& pt) : instructedToGoAround(false), onRwy(false), nextOnRwy(false), + gearWasUp(false), + gearUpReported(false), vfrArrivalReported(false), vfrArrivalAcknowledged(false), opType(TTT_UNKNOWN), leg(LEG_UNKNOWN), landingType(AIP_LT_UNKNOWN), - gearWasUp(false), - gearUpReported(false), isUser(false) { plane.callsign = "UNKNOWN"; @@ -162,13 +162,13 @@ TowerPlaneRec::TowerPlaneRec(const PlaneRec& p, const SGGeod& pt) : instructedToGoAround(false), onRwy(false), nextOnRwy(false), + gearWasUp(false), + gearUpReported(false), vfrArrivalReported(false), vfrArrivalAcknowledged(false), opType(TTT_UNKNOWN), leg(LEG_UNKNOWN), landingType(AIP_LT_UNKNOWN), - gearWasUp(false), - gearUpReported(false), isUser(false) { plane = p; @@ -1510,8 +1510,8 @@ void FGTower::DoRwyDetails() { } // move to the +l end/center of the runway //cout << "Runway center is at " << runway._lon << ", " << runway._lat << '\n'; - double tshlon, tshlat, tshr; - double tolon, tolat, tor; + double tshlon = 0.0, tshlat = 0.0, tshr = 0.0; + double tolon = 0.0, tolat = 0.0, tor = 0.0; rwy.length = runway->lengthM(); geo_direct_wgs_84 ( aptElev, runway->latitude(), runway->longitude(), other_way, rwy.length / 2.0 - 25.0, &tshlat, &tshlon, &tshr );