From: Eric Biggers Date: Sun, 3 Aug 2014 23:37:36 +0000 (-0500) Subject: xpress.h: Remove ENABLE_XPRESS_DEBUG X-Git-Tag: v1.7.1~15 X-Git-Url: https://wimlib.net/git/?a=commitdiff_plain;h=919b97754cedca6f37dd1808b00198dc3cb8bf98;p=wimlib xpress.h: Remove ENABLE_XPRESS_DEBUG Neither XPRESS_DEBUG() nor XPRESS_ASSERT() is used anymore. --- 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