]> git.mxchange.org Git - flightgear.git/blobdiff - src/Airports/calc_loc.cxx
BUGFIX: If/else bracket misplacement.
[flightgear.git] / src / Airports / calc_loc.cxx
index 2d8bd68011622bf9839fb506167b76185251f489..3ca71bef36b114948f5634f18b8337fed6dc4fb7 100644 (file)
@@ -1,21 +1,25 @@
 // Calculate ILS heading
 
+#ifdef HAVE_CONFIG_H
+#  include <config.h>
+#endif
+
 #include <simgear/compiler.h>
 
 #include <stdio.h>
 #include <stdlib.h>
 
 #include <iostream>
-#include STL_STRING
+#include <string>
 
 #include <plib/sg.h>
 
 #include <simgear/math/sg_geodesy.hxx>
 
 
-SG_USING_STD(string);
-SG_USING_STD(cout);
-SG_USING_STD(endl);
+using std::string;
+using std::cout;
+using std::endl;
 
 int main( int argc, char **argv ) {