1
0
Fork 0

eliminate gcc warnings

This commit is contained in:
torsten 2010-01-02 20:28:38 +00:00 committed by Tim Moore
parent c0b64dccdb
commit 1290c25a38
2 changed files with 3 additions and 3 deletions

View file

@ -164,8 +164,8 @@ void FGAILocalTraffic::GetRwyDetails(const string& id) {
// 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;
double tolon = 0.0, tolat = 0.0, tor;
rwy.length = runway->lengthM();
rwy.width = runway->widthM();
geo_direct_wgs_84 ( aptElev, runway->latitude(), runway->longitude(), other_way,

View file

@ -86,7 +86,7 @@ string ConvertNumToSpokenDigits(const int& n) {
// Anything else is not guaranteed to be handled correctly!
string ConvertRwyNumToSpokenString(const string &rwy) {
string rslt;
for (int ii = 0; ii < rwy.length(); ii++){
for (size_t ii = 0; ii < rwy.length(); ii++){
if (rslt.length()) rslt += " ";
string ch = rwy.substr(ii,1);
if (isdigit(ch[0])) rslt += ConvertNumToSpokenDigits(atoi(ch.c_str()));