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/24 13:52:36 UTC

svn commit: r614864 - /stdcxx/branches/4.2.x/include/rw/_config-msvcrt.h

Author: faridz
Date: Thu Jan 24 04:52:22 2008
New Revision: 614864

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

	* include/rw/_config-msvcrt.h [_MSC_VER <= 1300]:
	#define _RWSTD_LONG_LONG as __int64 on MSVC 7.0.

Modified:
    stdcxx/branches/4.2.x/include/rw/_config-msvcrt.h

Modified: stdcxx/branches/4.2.x/include/rw/_config-msvcrt.h
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.2.x/include/rw/_config-msvcrt.h?rev=614864&r1=614863&r2=614864&view=diff
==============================================================================
--- stdcxx/branches/4.2.x/include/rw/_config-msvcrt.h (original)
+++ stdcxx/branches/4.2.x/include/rw/_config-msvcrt.h Thu Jan 24 04:52:22 2008
@@ -89,9 +89,9 @@
 #endif   // _RWSTD_NO_STATIC_CONST_MEMBER_DEFINITION
 
    // enable iostream and locale support for long long integers
-#ifdef _RWSTD_NO_LONG_LONG
+#if _MSC_VER <= 1300 || defined (_RWSTD_NO_LONG_LONG)
 #  define _RWSTD_LONG_LONG __int64
-#endif
+#endif   // _MSC_VER <= 1300 || _RWSTD_NO_LONG_LONG
 
 #if defined (_WIN64)
      // FIXME: handle by forward declaring fuctions in <rw/_mutex.h>