summaryrefslogtreecommitdiff
path: root/src/jit/bitset.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/jit/bitset.cpp')
-rw-r--r--src/jit/bitset.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jit/bitset.cpp b/src/jit/bitset.cpp
index 90ef253199..785061f44c 100644
--- a/src/jit/bitset.cpp
+++ b/src/jit/bitset.cpp
@@ -98,9 +98,9 @@ void BitSetSupport::RunTests(Env env)
class TestBitSetTraits
{
public:
- static IAllocator* GetAllocator(IAllocator* alloc)
+ static void* Alloc(IAllocator* alloc, size_t byteSize)
{
- return alloc;
+ return alloc->Alloc(byteSize);
}
static unsigned GetSize(IAllocator* alloc)
{