From 291d176e8f5c38bf065225faad6e93378657b78c Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Fri, 9 Oct 2020 08:42:32 -0700 Subject: [PATCH] Spelling fix --- BeefLibs/corlib/src/BumpAllocator.bf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BeefLibs/corlib/src/BumpAllocator.bf b/BeefLibs/corlib/src/BumpAllocator.bf index 8b8f7223..a2a1c926 100644 --- a/BeefLibs/corlib/src/BumpAllocator.bf +++ b/BeefLibs/corlib/src/BumpAllocator.bf @@ -22,7 +22,7 @@ namespace System List mLargeRawAllocs; List mLargeDtorAllocs; int mPoolsSize; - int mLageAllocs; + int mLargeAllocs; public DestructorHandlingKind DestructorHandling = .Allow; uint8* mCurAlloc; @@ -123,7 +123,7 @@ namespace System { if ((size > (mCurEnd - mCurAlloc) / 2) && (mCurAlloc != null)) { - mLageAllocs += size; + mLargeAllocs += size; void* largeAlloc = AllocLarge(size, align); if (mLargeRawAllocs == null) mLargeRawAllocs = new List(); @@ -147,7 +147,7 @@ namespace System { if ((size > (mCurEnd - mCurAlloc) / 2) && (mCurAlloc != null)) { - mLageAllocs += size; + mLargeAllocs += size; void* largeAlloc = AllocLarge(size, align); if (mLargeDtorAllocs == null) mLargeDtorAllocs = new List();