remove useless macro

This commit is contained in:
silverweed 2024-07-19 21:06:55 +02:00
parent 930ce52ba1
commit 12d2b9a928

View file

@ -1,7 +1,6 @@
// Mostly taken from the raddebugger -- thanks, Ryan. // Mostly taken from the raddebugger -- thanks, Ryan.
#define align_pow2(x, b) (((x) + (b) - 1) & ( ~((b) - 1))) #define align_pow2(x, b) (((x) + (b) - 1) & ( ~((b) - 1)))
#define SLLStackPop_N(f,next) ((f)=(f)->next)
#ifdef ENABLE_ASAN #ifdef ENABLE_ASAN
#define asan_poison_memory_region(mem, cmt) __asan_poison_memory_region(mem, cmt) #define asan_poison_memory_region(mem, cmt) __asan_poison_memory_region(mem, cmt)