Changeset 10634 in webkit for trunk/JavaScriptCore/kjs/identifier.cpp
- Timestamp:
- Sep 27, 2005, 3:37:33 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/identifier.cpp
r10465 r10634 36 36 #include "identifier.h" 37 37 38 #include "fast_malloc.h"38 #include <kxmlcore/FastMalloc.h> 39 39 #include <string.h> // for strlen 40 40 #include <new> // for placement new … … 127 127 } 128 128 129 UChar *d = static_cast<UChar *>( kjs_fast_malloc(sizeof(UChar) * length));129 UChar *d = static_cast<UChar *>(fastMalloc(sizeof(UChar) * length)); 130 130 for (int j = 0; j != length; j++) 131 131 d[j] = c[j]; … … 166 166 } 167 167 168 UChar *d = static_cast<UChar *>( kjs_fast_malloc(sizeof(UChar) * length));168 UChar *d = static_cast<UChar *>(fastMalloc(sizeof(UChar) * length)); 169 169 for (int j = 0; j != length; j++) 170 170 d[j] = s[j];
Note:
See TracChangeset
for help on using the changeset viewer.