Changeset 40059 in webkit for trunk/JavaScriptCore/pcre/pcre_compile.cpp
- Timestamp:
- Jan 20, 2009, 10:25:30 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/pcre/pcre_compile.cpp
r39984 r40059 2608 2608 const UChar* ptr = (const UChar*)pattern; 2609 2609 const UChar* patternEnd = pattern + patternLength; 2610 unsigned char* code = (unsigned char*)codeStart;2610 unsigned char* code = const_cast<unsigned char*>(codeStart); 2611 2611 int firstByte, reqByte; 2612 2612 int bracketCount = 0;
Note:
See TracChangeset
for help on using the changeset viewer.