From 7feb472eefd626286ea351f82a43bdbd2111c2ac Mon Sep 17 00:00:00 2001 From: curt Date: Mon, 15 Mar 1999 17:58:57 +0000 Subject: [PATCH] MSVC++ portability tweaks contributed by Bernie Bright. Added using std::istream declaration. --- Airports/simple.hxx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Airports/simple.hxx b/Airports/simple.hxx index 221b61097..38e4b8b65 100644 --- a/Airports/simple.hxx +++ b/Airports/simple.hxx @@ -35,12 +35,18 @@ #include +#ifdef FG_HAVE_STD_INCLUDES +# include +#else +# include +#endif #include STL_STRING #include FG_USING_STD(string); FG_USING_STD(set); +FG_USING_STD(istream); class fgAIRPORT { @@ -105,6 +111,10 @@ public: // $Log$ +// Revision 1.8 1999/03/15 17:58:57 curt +// MSVC++ portability tweaks contributed by Bernie Bright. +// Added using std::istream declaration. +// // Revision 1.7 1999/03/02 01:02:33 curt // Tweaks for building with native SGI compilers. // -- 2.39.5