Ignore:
Timestamp:
May 17, 2006, 9:15:21 PM (19 years ago)
Author:
staikos
Message:

Reviewed by Maciej, Alexey, and Eric.

  • Use // in .c files to compile with non-C99 and non-GCC compilers.
  • Change include to <wtf/HashTraits.h> from "HashTraits.h" to avoid -I
  • Use correct parentheses and correct mask for utf-32 support.
File:
1 edited

Legend:

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

    r12069 r14457  
    19521952      GETUTF8CHARLEN(fc, ecode, length);
    19531953      {
    1954       int utf16Length; // don't initialize on this line as workaround for Win32 compile problem
     1954      int utf16Length; /* don't initialize on this line as workaround for Win32 compile problem */
    19551955      utf16Length = fc > 0xFFFF ? 2 : 1;
    19561956      if (min * utf16Length > md->end_subject - eptr) RRETURN(MATCH_NOMATCH);
Note: See TracChangeset for help on using the changeset viewer.