From 95b348664919c952eb35487dfcd7eda69d04ad0b Mon Sep 17 00:00:00 2001 From: bkaradzic Date: Fri, 30 Aug 2013 21:41:36 -0700 Subject: [PATCH] Fixed bad macro. --- include/bx/allocator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bx/allocator.h b/include/bx/allocator.h index c3af991..d80755d 100644 --- a/include/bx/allocator.h +++ b/include/bx/allocator.h @@ -70,7 +70,7 @@ namespace bx virtual void* realloc(void* _ptr, size_t _size, const char* _file, uint32_t _line) = 0; }; - struct BX_NO_INLINE AlignedAllocatorI + struct BX_NO_VTABLE AlignedAllocatorI { virtual void* alignedAlloc(size_t _size, size_t _align, const char* _file, uint32_t _line) = 0; virtual void alignedFree(void* _ptr, const char* _file, uint32_t _line) = 0;