From bd05b197132b9fb9f11f6e12bc55c02cd0658dec Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Fri, 16 Jun 2017 18:16:27 -0700 Subject: [PATCH] removed macro CLAMP from decodecorpus never used, and would duplicate with CLAMP from zstd_compress.c --- tests/decodecorpus.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/decodecorpus.c b/tests/decodecorpus.c index f7b3c854..940e3d8a 100644 --- a/tests/decodecorpus.c +++ b/tests/decodecorpus.c @@ -73,8 +73,6 @@ static clock_t clockSpan(clock_t cStart) /*-******************************************************* * Random function *********************************************************/ -#define CLAMP(x, a, b) ((x) < (a) ? (a) : ((x) > (b) ? (b) : (x))) - static unsigned RAND(unsigned* src) { #define RAND_rotl32(x,r) ((x << r) | (x >> (32 - r)))