11#define __RTDiag_h__ included
26 static void failed_assertion(
const char * expr,
29 static void panic(
const char * );
35#if OTRTSDEBUG == DEBUG_NONE
36#define RTAssert( expr ) ( (void)0 )
38#define RTAssert( expr ) \
39 if( expr ) { } else RTDiag::failed_assertion( #expr, __FILE__, __LINE__ )
Definition: RTDiagStream.h:33