35#ifndef _BLAZE_UTIL_ASSERT_H_
36#define _BLAZE_UTIL_ASSERT_H_
98#if BLAZE_INTERNAL_ASSERTION
99# define BLAZE_INTERNAL_ASSERT(expr,msg) assert( ( expr ) || blaze::ASSERT_MESSAGE( msg ) )
101# define BLAZE_INTERNAL_ASSERT(expr,msg)
114#if BLAZE_USER_ASSERTION
115# define BLAZE_USER_ASSERT(expr,msg) assert( ( expr ) || blaze::ASSERT_MESSAGE( msg ) )
117# define BLAZE_USER_ASSERT(expr,msg)
bool ASSERT_MESSAGE(const char *)
Assertion helper function.
Definition: Assert.h:83
Configuration of the run time assertion macros.