From 3462e3b6c109d1bd735562e6eac1818d96ab7645 Mon Sep 17 00:00:00 2001 From: ehofman Date: Wed, 3 Mar 2004 19:59:44 +0000 Subject: [PATCH] MSVC .NET 2003 fix. --- simgear/props/props.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simgear/props/props.cxx b/simgear/props/props.cxx index 44047422..deb1f22b 100644 --- a/simgear/props/props.cxx +++ b/simgear/props/props.cxx @@ -30,8 +30,8 @@ SG_USING_STD(sort); SG_USING_STD(find); SG_USING_STD(vector); -#ifdef _MSC_VER -// MSVC is buggy, and needs something strange here +#if ( _MSC_VER == 1200 ) +! // MSVC 6 is buggy, and needs something strange here SG_USING_STD(vector); SG_USING_STD(vector); SG_USING_STD(vector); -- 2.39.5