dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnet/include il_values.h,1.16,1.17


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnet/include il_values.h,1.16,1.17
Date: Sun, 16 Feb 2003 04:23:22 -0500

Update of /cvsroot/dotgnu-pnet/pnet/include
In directory subversions:/tmp/cvs-serv15389/include

Modified Files:
        il_values.h 
Log Message:


Rearrange the detection of ILInt64 a little so that detection of
Win32's "__int64" precedes "long long".


Index: il_values.h
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/include/il_values.h,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -r1.16 -r1.17
*** il_values.h 7 Feb 2003 00:26:27 -0000       1.16
--- il_values.h 16 Feb 2003 09:23:19 -0000      1.17
***************
*** 67,71 ****
   * Determine which types should be used for 64-bit numeric values.
   */
! #ifdef SIZEOF_LONG_LONG
        #if SIZEOF_LONG_LONG == 8
                typedef long long                       ILInt64;
--- 67,76 ----
   * Determine which types should be used for 64-bit numeric values.
   */
! #ifdef IL_WIN32_NATIVE
!       typedef __int64                                 ILInt64;
!       typedef unsigned __int64                ILUInt64;
!       #define IL_HAVE_INT64
! #endif
! #if (!defined(IL_HAVE_INT64)) && defined(SIZEOF_LONG_LONG)
        #if SIZEOF_LONG_LONG == 8
                typedef long long                       ILInt64;
***************
*** 80,88 ****
                #define IL_HAVE_INT64
        #endif
- #endif
- #if (!defined(IL_HAVE_INT64)) && defined(IL_WIN32_NATIVE)
-       typedef __int64                                 ILInt64;
-       typedef unsigned __int64                ILUInt64;
-       #define IL_HAVE_INT64
  #endif
  #ifndef IL_HAVE_INT64
--- 85,88 ----





reply via email to

[Prev in Thread] Current Thread [Next in Thread]