]> git.mxchange.org Git - simgear.git/commitdiff
MSVC .NET 2003 fix.
authorehofman <ehofman>
Wed, 3 Mar 2004 19:59:44 +0000 (19:59 +0000)
committerehofman <ehofman>
Wed, 3 Mar 2004 19:59:44 +0000 (19:59 +0000)
simgear/props/props.cxx

index 4404742216dd10b7d5f354fb6d29619bf1a5f048..deb1f22bdba010061af14629f6596037df349cdb 100644 (file)
@@ -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<SGPropertyNode_ptr>);
 SG_USING_STD(vector<SGPropertyChangeListener *>);
 SG_USING_STD(vector<SGPropertyNode *>);