Changeset 64302 in webkit for trunk/JavaScriptCore/pcre/pcre_compile.cpp
- Timestamp:
- Jul 29, 2010, 12:52:22 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/pcre/pcre_compile.cpp
r62367 r64302 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.