From e1559b56867e08eed5aa46310d8e2ef2a8338541 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Tue, 16 Jun 2020 10:34:09 -0700 Subject: [PATCH] Moving IRawAllocator --- BeefLibs/corlib/src/BumpAllocator.bf | 6 ------ 1 file changed, 6 deletions(-) diff --git a/BeefLibs/corlib/src/BumpAllocator.bf b/BeefLibs/corlib/src/BumpAllocator.bf index 30ec5062..d87cb722 100644 --- a/BeefLibs/corlib/src/BumpAllocator.bf +++ b/BeefLibs/corlib/src/BumpAllocator.bf @@ -2,12 +2,6 @@ using System.Collections; namespace System { - interface IRawAllocator - { - void* Alloc(int size, int align); - void Free(void* ptr); - } - class BumpAllocator : IRawAllocator { struct DtorEntry