From: ehofman Date: Sun, 11 Dec 2005 12:53:54 +0000 (+0000) Subject: MSVC8 fixes. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4c395bf7a6ddb810904a54a467cb08898ad760be;p=flightgear.git MSVC8 fixes. --- diff --git a/src/FDM/JSBSim/FGJSBBase.h b/src/FDM/JSBSim/FGJSBBase.h index 34537f058..7b75f84c6 100644 --- a/src/FDM/JSBSim/FGJSBBase.h +++ b/src/FDM/JSBSim/FGJSBBase.h @@ -42,6 +42,7 @@ INCLUDES #ifdef FGFS # include +# include # include # include # include STL_STRING @@ -49,7 +50,6 @@ INCLUDES SG_USING_STD(string); # ifndef M_PI -# include # 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