From: ehofman Date: Tue, 25 Nov 2003 21:45:56 +0000 (+0000) Subject: MSVC > 6.0 fix X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=eef1cc716d0b162e60855a7eaa1b34a575cccb2e;p=simgear.git MSVC > 6.0 fix --- diff --git a/simgear/compiler.h b/simgear/compiler.h index 9bf82093..d2873230 100644 --- a/simgear/compiler.h +++ b/simgear/compiler.h @@ -219,7 +219,7 @@ # define bcopy(from, to, n) memcpy(to, from, n) # define FG_MEM_COPY(to,from,n) memcpy(to, from, n) -# if _MSC_VER == 1200 // msvc++ 6.0 +# if _MSC_VER >= 1200 // msvc++ 6.0 or greater # define SG_NAMESPACES # define SG_HAVE_STD # define SG_HAVE_STD_INCLUDES