From e3c6a4c2055a6394ebf8e411b6cb891167fcd85c Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Thu, 9 May 2002 05:27:17 +0000 Subject: [PATCH] add FLAC__ASSERT_DECLARATION macro --- include/FLAC/assert.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/FLAC/assert.h b/include/FLAC/assert.h index 2a3f671b..422b85b2 100644 --- a/include/FLAC/assert.h +++ b/include/FLAC/assert.h @@ -24,8 +24,10 @@ #ifdef DEBUG #include #define FLAC__ASSERT(x) assert(x) +#define FLAC__ASSERT_DECLARATION(x) x #else #define FLAC__ASSERT(x) +#define FLAC__ASSERT_DECLARATION(x) #endif #endif