Changeset 65311 in webkit for trunk/JavaScriptCore/pcre/pcre_compile.cpp
- Timestamp:
- Aug 13, 2010, 3:14:36 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/pcre/pcre_compile.cpp
r64327 r65311 50 50 #include <wtf/FastMalloc.h> 51 51 #include <wtf/FixedArray.h> 52 #include <wtf/StdLibExtras.h> 52 53 53 54 using namespace WTF; … … 2591 2592 size = stringOffset + patternLength * sizeof(UChar); 2592 2593 #endif 2593 JSRegExp* re = reinterpret_cast <JSRegExp*>(new char[size]);2594 JSRegExp* re = reinterpret_cast_ptr<JSRegExp*>(new char[size]); 2594 2595 2595 2596 if (!re)
Note:
See TracChangeset
for help on using the changeset viewer.