mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2025-02-17 20:31:57 -05:00
Cleanup.
This commit is contained in:
parent
ab969f0a1a
commit
d3005380d8
1 changed files with 2 additions and 2 deletions
|
@ -48,12 +48,12 @@ namespace bgfx
|
|||
|
||||
void* TinyStlAllocator::static_allocate(size_t _bytes)
|
||||
{
|
||||
return BX_ALLOC(bgfx::g_allocator, _bytes);
|
||||
return BX_ALLOC(g_allocator, _bytes);
|
||||
}
|
||||
|
||||
void TinyStlAllocator::static_deallocate(void* _ptr, size_t /*_bytes*/)
|
||||
{
|
||||
BX_FREE(bgfx::g_allocator, _ptr);
|
||||
BX_FREE(g_allocator, _ptr);
|
||||
}
|
||||
|
||||
struct CallbackStub : public CallbackI
|
||||
|
|
Loading…
Reference in a new issue