]> git.mxchange.org Git - flightgear.git/blobdiff - src/Instrumentation/newnavradio.cxx
Drop obsolete include
[flightgear.git] / src / Instrumentation / newnavradio.cxx
index 9468e3f4da3e211f26eecc3584e365c9b59386d8..202fd24724fe431973a03012266e054c707a5edf 100755 (executable)
@@ -808,7 +808,7 @@ public:
   void valueChanged (SGPropertyNode * prop)
   {
     // format as fixed decimal "nnn.nn"
-    ostringstream buf;
+    std::ostringstream buf;
     buf << std::fixed 
         << std::setw(5) 
         << std::setfill('0') 
@@ -922,7 +922,7 @@ void NavRadioImpl::update( double dt )
   try {
     position = globals->get_aircraft_position();
   }
-  catch( exception & ) {
+  catch( std::exception & ) {
     return;
   }