From 919b97754cedca6f37dd1808b00198dc3cb8bf98 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sun, 3 Aug 2014 18:37:36 -0500 Subject: [PATCH] xpress.h: Remove ENABLE_XPRESS_DEBUG Neither XPRESS_DEBUG() nor XPRESS_ASSERT() is used anymore. --- include/wimlib/xpress.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/include/wimlib/xpress.h b/include/wimlib/xpress.h index 37f2fdfa..a7113153 100644 --- a/include/wimlib/xpress.h +++ b/include/wimlib/xpress.h @@ -4,15 +4,6 @@ /* Constants for the XPRESS data compression format. See the comments in * xpress-decompress.c for more information about this format. */ -//#define ENABLE_XPRESS_DEBUG -#ifdef ENABLE_XPRESS_DEBUG -# define XPRESS_DEBUG DEBUG -# define XPRESS_ASSERT wimlib_assert -#else -# define XPRESS_DEBUG(format, ...) -# define XPRESS_ASSERT(...) -#endif - #define XPRESS_NUM_CHARS 256 #define XPRESS_NUM_SYMBOLS 512 #define XPRESS_MAX_CODEWORD_LEN 15 -- 2.43.0