diff options
Diffstat (limited to 'compiler-rt/lib/scudo/scudo_allocator_combined.h')
| -rw-r--r-- | compiler-rt/lib/scudo/scudo_allocator_combined.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/scudo/scudo_allocator_combined.h b/compiler-rt/lib/scudo/scudo_allocator_combined.h index 25e273114c2..f9ac146ad0f 100644 --- a/compiler-rt/lib/scudo/scudo_allocator_combined.h +++ b/compiler-rt/lib/scudo/scudo_allocator_combined.h @@ -52,7 +52,7 @@ class ScudoCombinedAllocator { uptr getActuallyAllocatedSize(void *Ptr, uptr ClassId) { if (ClassId) return PrimaryAllocator::ClassIdToSize(ClassId); - return Secondary.GetActuallyAllocatedSize(Ptr); + return SecondaryAllocator::GetActuallyAllocatedSize(Ptr); } void initCache(AllocatorCache *Cache) { |

