You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by fa...@apache.org on 2008/01/29 19:30:02 UTC

svn commit: r616469 - /stdcxx/trunk/include/rw/_config-msvc.h

Author: faridz
Date: Tue Jan 29 10:29:59 2008
New Revision: 616469

URL: http://svn.apache.org/viewvc?rev=616469&view=rev
Log:
2008-01-29 Farid Zaripov <fa...@epam.com>

	Merged r616468 from branches/4.2.x
	* include/rw/_config-msvc.h: Disable compiler warning C4231.

Modified:
    stdcxx/trunk/include/rw/_config-msvc.h

Modified: stdcxx/trunk/include/rw/_config-msvc.h
URL: http://svn.apache.org/viewvc/stdcxx/trunk/include/rw/_config-msvc.h?rev=616469&r1=616468&r2=616469&view=diff
==============================================================================
--- stdcxx/trunk/include/rw/_config-msvc.h (original)
+++ stdcxx/trunk/include/rw/_config-msvc.h Tue Jan 29 10:29:59 2008
@@ -54,6 +54,10 @@
    // disable "return type for operator->' is not a UDT"
 #  pragma warning (disable: 4284)
 
+   // disable "nonstandard extension used :"
+   // "'extern' before template explicit instantiation"
+#  pragma warning (disable: 4231)
+
    // disable "decorated name length exceeded"
 #  pragma warning (disable: 4503)