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_compile.c

    r12069 r14457  
    4747
    4848
    49 // WARNING: These macros evaluate their parameters more than once.
     49/* WARNING: These macros evaluate their parameters more than once. */
    5050#if PCRE_UTF16
    5151#define CTYPES(cd, x) ((x) <= 255 ? (cd)->ctypes[(x)] : 0)
     
    29292929          namelen = ptr - name - 1;
    29302930
    2931           // FIXME: This won't work for UTF-16.
     2931          /* FIXME: This won't work for UTF-16. */
    29322932          for (i = 0; i < cd->names_found; i++)
    29332933            {
Note: See TracChangeset for help on using the changeset viewer.