| Index: Source/wtf/FastMalloc.cpp
|
| diff --git a/Source/wtf/FastMalloc.cpp b/Source/wtf/FastMalloc.cpp
|
| index 3bab74d3027153fbb7ef5d3b944155e2d66c8363..f2f0c2ee736534b905e43245c837363261fa34e2 100644
|
| --- a/Source/wtf/FastMalloc.cpp
|
| +++ b/Source/wtf/FastMalloc.cpp
|
| @@ -53,17 +53,17 @@ char* fastStrDup(const char* src)
|
|
|
| void* fastMalloc(size_t n)
|
| {
|
| - return partitionAllocGeneric(Partitions::getFastMallocPartition(), n);
|
| + return partitionAllocGeneric(Partitions::fastMallocPartition(), n);
|
| }
|
|
|
| void fastFree(void* p)
|
| {
|
| - partitionFreeGeneric(Partitions::getFastMallocPartition(), p);
|
| + partitionFreeGeneric(Partitions::fastMallocPartition(), p);
|
| }
|
|
|
| void* fastRealloc(void* p, size_t n)
|
| {
|
| - return partitionReallocGeneric(Partitions::getFastMallocPartition(), p, n);
|
| + return partitionReallocGeneric(Partitions::fastMallocPartition(), p, n);
|
| }
|
|
|
| } // namespace WTF
|
|
|