Ignore:
Timestamp:
Jan 6, 2006, 2:43:44 PM (19 years ago)
Author:
hyatt
Message:

Land all the changes to make JSCore build again on windows.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/pcre/pcre_compile.c

    r10495 r11918  
    13571357#if PCRE_UTF16
    13581358
    1359 static inline BOOL strequal(const pcre_uchar *str1, int len, const char *str2)
     1359static __inline BOOL strequal(const pcre_uchar *str1, int len, const char *str2)
    13601360{
    13611361  int i;
     
    48944894          ++ptr;
    48954895          }
    4896         int i;
    4897         for (i = 0; i < _pcre_utf8_table1_size; i++)
    4898           if (c <= _pcre_utf8_table1[i]) break;
    4899         length += i;
    4900         lastitemlength += i;
     4896       
     4897        {
     4898          int i;
     4899          for (i = 0; i < _pcre_utf8_table1_size; i++)
     4900            if (c <= _pcre_utf8_table1[i]) break;
     4901          length += i;
     4902          lastitemlength += i;
     4903        }
    49014904      }
    49024905#else
Note: See TracChangeset for help on using the changeset viewer.