X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=includes%2Fassert.h;fp=includes%2Fassert.h;h=fb6dbf1b1b63a5118cf523c3f2c6567b953b580f;hb=393020b6e48719d27699dea6b29e53025bbd5123;hp=35c2795352bba439b21e4e391c73864a090b5613;hpb=f408c1fd633015089d2a0fc6bc31c9f61eeae0a9;p=pdclib 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