bbassert.h 324 B

1234567891011121314151617
  1. #ifndef BBASSERT_H
  2. #define BBASSERT_H
  3. #include "bbtypes.h"
  4. void bbRuntimeError( const bbString &str );
  5. #define bbAssert( COND,MSG ) (void)((COND) || (bbRuntimeError(MSG),0))
  6. #ifdef NDEBUG
  7. #define bbDebugAssert( COND,MSG )
  8. #else
  9. #define bbDebugAssert( COND,MSG ) (void)((COND) || (bbRuntimeError(MSG),0))
  10. #endif
  11. #endif