Changeset 65311 in webkit for trunk/JavaScriptCore/wtf/FastMalloc.cpp
- Timestamp:
- Aug 13, 2010, 3:14:36 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/FastMalloc.cpp
r65091 r65311 83 83 #include <pthread.h> 84 84 #endif 85 #include <wtf/StdLibExtras.h> 85 86 86 87 #ifndef NO_TCMALLOC_SAMPLES … … 1018 1019 CRASH(); 1019 1020 1020 * (void**)new_allocation= allocated_regions_;1021 *reinterpret_cast_ptr<void**>(new_allocation) = allocated_regions_; 1021 1022 allocated_regions_ = new_allocation; 1022 1023 free_area_ = new_allocation + kAlignedSize; … … 2719 2720 while ((nptr = ptr + size) <= limit) { 2720 2721 *tail = ptr; 2721 tail = reinterpret_cast <void**>(ptr);2722 tail = reinterpret_cast_ptr<void**>(ptr); 2722 2723 ptr = nptr; 2723 2724 num++;
Note:
See TracChangeset
for help on using the changeset viewer.