From eef1cc716d0b162e60855a7eaa1b34a575cccb2e Mon Sep 17 00:00:00 2001 From: ehofman Date: Tue, 25 Nov 2003 21:45:56 +0000 Subject: [PATCH] MSVC > 6.0 fix --- simgear/compiler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5