From: hno <> Date: Sat, 13 May 2006 03:52:24 +0000 (+0000) Subject: Don't disable assert on PURIFY X-Git-Tag: SQUID_3_0_PRE4~136 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c50d7fdad58f22c00ad0d1dbd53c643bf61e7b68;p=thirdparty%2Fsquid.git Don't disable assert on PURIFY --- diff --git a/include/assert.h b/include/assert.h index 7857c015d8..d89332eaf9 100644 --- a/include/assert.h +++ b/include/assert.h @@ -1,6 +1,6 @@ /* - * $Id: assert.h,v 1.2 2006/05/10 22:03:07 hno Exp $ + * $Id: assert.h,v 1.3 2006/05/12 21:52:24 hno Exp $ * * AUTHOR: Duane Wessels * @@ -37,9 +37,7 @@ #include "config.h" -#if PURIFY -#define assert(EX) ((void)0) -#elif defined(NODEBUG) +#if defined(NODEBUG) #define assert(EX) ((void)0) #elif STDC_HEADERS #define assert(EX) ((EX)?((void)0):xassert( # EX , __FILE__, __LINE__))