Ignore:
Timestamp:
Aug 31, 2006, 3:55:47 PM (19 years ago)
Author:
andersca
Message:

2006-08-31 Anders Carlsson <[email protected]>

Reviewed by Tim H.


Fix Windows build.


  • JavaScriptCore.vcproj/dftables/dftables.vcproj:
  • pcre/pcre_internal.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/pcre/pcre_internal.h

    r16155 r16163  
    4444// Added to prevent 64-to-32 shortening warnings when compiling for 64-bit
    4545// <rdar://problem/4712064> PCRE generates many warnings with -Wshorten-64-to-32
     46#if defined(__GNUC__) && defined(__LP64__)
    4647#define INT_CAST(i) (int)(i); ASSERT((i) <= INT_MAX)
     48#else
     49#define INT_CAST(i) (i)
     50#endif
    4751
    4852/* This header contains definitions that are shared between the different
Note: See TracChangeset for help on using the changeset viewer.