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