X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=includes%2Fassert.h;h=fb6dbf1b1b63a5118cf523c3f2c6567b953b580f;hb=be35e77c0d824e5bd545620ca81c812f9e16f0e5;hp=35c2795352bba439b21e4e391c73864a090b5613;hpb=d9dcf16664c81809258992e1653ecb68c8079974;p=pdclib.old diff --git a/includes/assert.h b/includes/assert.h index 35c2795..fb6dbf1 100644 --- a/includes/assert.h +++ b/includes/assert.h @@ -35,15 +35,15 @@ void _PDCLIB_assert( char const * const ); #define assert( expression ) ( ( expression ) ? (void) 0 \ : _PDCLIB_assert( "Assertion failed: " #expression \ ", function ", __func__, \ - ", file " __FILE__ \ - ", line " _PDCLIB_symbol2string( __LINE__ ) \ - "." _PDCLIB_endl ) ) + ", file " __FILE__ \ + ", line " _PDCLIB_symbol2string( __LINE__ ) \ + "." _PDCLIB_endl ) ) #else #define assert( expression ) ( ( expression ) ? (void) 0 \ - : _PDCLIB_assert( "Assertion failed: " #expression \ - ", file " __FILE__ \ - ", line " _PDCLIB_symbol2string( __LINE__ ) \ - "." _PDCLIB_endl ) ) + : _PDCLIB_assert( "Assertion failed: " #expression \ + ", file " __FILE__ \ + ", line " _PDCLIB_symbol2string( __LINE__ ) \ + "." _PDCLIB_endl ) ) #endif #endif