From 003bbea3585b35706ac22c3baa429108e98d57b3 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Thu, 6 Jun 2019 01:28:59 +0300 Subject: [PATCH] engine: common: remove unneeded REF_DLL ifdef, keep #error anyway --- engine/common/common.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/engine/common/common.h b/engine/common/common.h index b2ea5645..b96ad82e 100644 --- a/engine/common/common.h +++ b/engine/common/common.h @@ -515,7 +515,6 @@ qboolean Mem_IsAllocatedExt( byte *poolptr, void *data ); void Mem_PrintList( size_t minallocationsize ); void Mem_PrintStats( void ); -#ifndef REF_DLL #define Mem_Malloc( pool, size ) _Mem_Alloc( pool, size, false, __FILE__, __LINE__ ) #define Mem_Calloc( pool, size ) _Mem_Alloc( pool, size, true, __FILE__, __LINE__ ) #define Mem_Realloc( pool, ptr, size ) _Mem_Realloc( pool, ptr, size, true, __FILE__, __LINE__ ) @@ -525,7 +524,6 @@ void Mem_PrintStats( void ); #define Mem_EmptyPool( pool ) _Mem_EmptyPool( pool, __FILE__, __LINE__ ) #define Mem_IsAllocated( mem ) Mem_IsAllocatedExt( NULL, mem ) #define Mem_Check() _Mem_Check( __FILE__, __LINE__ ) -#endif // // filesystem.c