| Index: Source/wtf/DefaultAllocator.h
|
| diff --git a/Source/wtf/DefaultAllocator.h b/Source/wtf/DefaultAllocator.h
|
| index 3e28b15625c331775fcade23ea20491da7057dfb..76226866d6786af17c4d843012a49e291034c6e8 100644
|
| --- a/Source/wtf/DefaultAllocator.h
|
| +++ b/Source/wtf/DefaultAllocator.h
|
| @@ -52,7 +52,7 @@ public:
|
| static size_t quantizedSize(size_t count)
|
| {
|
| RELEASE_ASSERT(count <= kMaxUnquantizedAllocation / sizeof(T));
|
| - return partitionAllocActualSize(Partitions::getBufferPartition(), count * sizeof(T));
|
| + return partitionAllocActualSize(Partitions::bufferPartition(), count * sizeof(T));
|
| }
|
| static const size_t kMaxUnquantizedAllocation = kGenericMaxDirectMapped;
|
| };
|
|
|