Author: faridz
Date: Mon Nov 12 05:49:37 2007
New Revision: 594132

URL: http://svn.apache.org/viewvc?rev=594132&view=rev
Log:
2007-11-12 Farid Zaripov <[EMAIL PROTECTED]>

        STDCXX-662
        * 17.names.cpp [_WIN32 && 1400 <= _MSC_VER]: Added #include <intrin.h>
        because it will be included by the library.

Modified:
    incubator/stdcxx/branches/4.2.x/tests/intro/17.names.cpp

Modified: incubator/stdcxx/branches/4.2.x/tests/intro/17.names.cpp
URL: 
http://svn.apache.org/viewvc/incubator/stdcxx/branches/4.2.x/tests/intro/17.names.cpp?rev=594132&r1=594131&r2=594132&view=diff
==============================================================================
--- incubator/stdcxx/branches/4.2.x/tests/intro/17.names.cpp (original)
+++ incubator/stdcxx/branches/4.2.x/tests/intro/17.names.cpp Mon Nov 12 
05:49:37 2007
@@ -96,8 +96,11 @@
 #  else
 #    include <dce/pthread.h>
 #  endif
-#elif defined (_WIN32) || defined (_WIN32)
+#elif defined (_WIN32)
 #  include <windows.h>
+#  if defined (_MSC_VER) && 1400 <= _MSC_VER
+#    include <intrin.h>
+#  endif   // 1400 <= _MSC_VER
 #endif
 
 


Reply via email to