]> git.mxchange.org Git - flightgear.git/commit
apt.dat parser: remove useless code
authorFlorent Rougon <f.rougon@free.fr>
Sun, 24 Apr 2016 16:05:15 +0000 (18:05 +0200)
committerFlorent Rougon <f.rougon@free.fr>
Wed, 27 Apr 2016 08:39:21 +0000 (10:39 +0200)
commit85653f04d4eae3483b7c170cf844986637eec825
tree6592276c182f964feb04932ad15f9f213fb1c22a
parenta43786f8ddbf48938d5e59ca1032123b8c25f994
apt.dat parser: remove useless code

Remove useless code before parsing the "row code" (terminology from the
apt.dat v1000 spec). The row code is parsed with atoi(), which will
automatically stop at the first space found if it saw at least one
digit, thus there is no need to replace it with '\0', AFAICS.

One could replace the existing atoi() call with things that do better
checking, but my tests showed that would be a bit slower, so I let it
this way (tried with std::istringstream and strtol()).
src/Airports/apt_loader.cxx