Changeset 64302 in webkit for trunk/JavaScriptCore/wtf/FastMalloc.cpp
- Timestamp:
- Jul 29, 2010, 12:52:22 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/FastMalloc.cpp
r62768 r64302 83 83 #include <pthread.h> 84 84 #endif 85 #include <wtf/StdLibExtras.h> 85 86 86 87 #ifndef NO_TCMALLOC_SAMPLES … … 1016 1017 CRASH(); 1017 1018 1018 * (void**)new_allocation= allocated_regions_;1019 *reinterpret_cast_ptr<void**>(new_allocation) = allocated_regions_; 1019 1020 allocated_regions_ = new_allocation; 1020 1021 free_area_ = new_allocation + kAlignedSize; … … 2711 2712 while ((nptr = ptr + size) <= limit) { 2712 2713 *tail = ptr; 2713 tail = reinterpret_cast <void**>(ptr);2714 tail = reinterpret_cast_ptr<void**>(ptr); 2714 2715 ptr = nptr; 2715 2716 num++;
Note:
See TracChangeset
for help on using the changeset viewer.