Skip to content

Commit 4be9cce

Browse files
committed
Remove unused macro
The 'MIN' macro is no longer used anywhere in the codebase. This commit removes the unused macro to improve code clarity.
1 parent fdf30b6 commit 4be9cce

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/cache.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
#include "cache.h"
1313
#include "mpool.h"
1414

15-
#define MIN(a, b) ((a < b) ? a : b)
1615
#define GOLDEN_RATIO_32 0x61C88647
1716
#define HASH(val) \
1817
(((val) * (GOLDEN_RATIO_32)) >> (32 - (cache_size_bits))) & (cache_size - 1)

0 commit comments

Comments
 (0)