Browse Source

Fixed bad macro.

bkaradzic 12 years ago
parent
commit
95b3486649
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/bx/allocator.h

+ 1 - 1
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;