MSVC++ portability tweaks contributed by Bernie Bright.
Added using std::istream declaration.
This commit is contained in:
parent
a05bd0b859
commit
7feb472eef
1 changed files with 10 additions and 0 deletions
|
@ -35,12 +35,18 @@
|
||||||
|
|
||||||
|
|
||||||
#include <Include/compiler.h>
|
#include <Include/compiler.h>
|
||||||
|
#ifdef FG_HAVE_STD_INCLUDES
|
||||||
|
# include <istream>
|
||||||
|
#else
|
||||||
|
# include <istream.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include STL_STRING
|
#include STL_STRING
|
||||||
#include <set>
|
#include <set>
|
||||||
|
|
||||||
FG_USING_STD(string);
|
FG_USING_STD(string);
|
||||||
FG_USING_STD(set);
|
FG_USING_STD(set);
|
||||||
|
FG_USING_STD(istream);
|
||||||
|
|
||||||
|
|
||||||
class fgAIRPORT {
|
class fgAIRPORT {
|
||||||
|
@ -105,6 +111,10 @@ public:
|
||||||
|
|
||||||
|
|
||||||
// $Log$
|
// $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
|
// Revision 1.7 1999/03/02 01:02:33 curt
|
||||||
// Tweaks for building with native SGI compilers.
|
// Tweaks for building with native SGI compilers.
|
||||||
//
|
//
|
||||||
|
|
Loading…
Add table
Reference in a new issue