1
0
Fork 0

MSVC8 fixes.

This commit is contained in:
ehofman 2005-12-11 12:53:54 +00:00
parent 688bcb579f
commit 4c395bf7a6

View file

@ -42,6 +42,7 @@ INCLUDES
#ifdef FGFS
# include <simgear/compiler.h>
# include <simgear/constants.h>
# include <math.h>
# include <queue>
# include STL_STRING
@ -49,7 +50,6 @@ INCLUDES
SG_USING_STD(string);
# ifndef M_PI
# include <simgear/constants.h>
# define M_PI SG_PI
# endif
@ -71,7 +71,7 @@ using std::string;
#endif
#if !defined(WIN32) || defined(__GNUC__)
#if !defined(WIN32) || defined(__GNUC__) || ( defined(_MSC_VER) && (_MSC_VER >= 1400))
using std::max;
#endif