| Index: Source/wtf/DefaultAllocator.cpp
|
| diff --git a/Source/wtf/DefaultAllocator.cpp b/Source/wtf/DefaultAllocator.cpp
|
| index 785173c62be92798858d14d41ee90894f6e3870b..cc769c8a0328b1579128fab1549579e5b0180304 100644
|
| --- a/Source/wtf/DefaultAllocator.cpp
|
| +++ b/Source/wtf/DefaultAllocator.cpp
|
| @@ -37,17 +37,17 @@ namespace WTF {
|
|
|
| void* DefaultAllocator::allocateBacking(size_t size)
|
| {
|
| - return partitionAllocGeneric(Partitions::getBufferPartition(), size);
|
| + return partitionAllocGeneric(Partitions::bufferPartition(), size);
|
| }
|
|
|
| void DefaultAllocator::freeVectorBacking(void* address)
|
| {
|
| - partitionFreeGeneric(Partitions::getBufferPartition(), address);
|
| + partitionFreeGeneric(Partitions::bufferPartition(), address);
|
| }
|
|
|
| void DefaultAllocator::freeHashTableBacking(void* address)
|
| {
|
| - partitionFreeGeneric(Partitions::getBufferPartition(), address);
|
| + partitionFreeGeneric(Partitions::bufferPartition(), address);
|
| }
|
|
|
| } // namespace WTF
|
|
|