Go to the documentation of this file.
22 #ifndef _BLAZE_UTIL_ASSERT_H_
23 #define _BLAZE_UTIL_ASSERT_H_
85 #if BLAZE_INTERNAL_ASSERTION
86 # define BLAZE_INTERNAL_ASSERT(expr,msg) assert( ( expr ) || blaze::ASSERT_MESSAGE( msg ) )
88 # define BLAZE_INTERNAL_ASSERT(expr,msg)
101 #if BLAZE_USER_ASSERTION
102 # define BLAZE_USER_ASSERT(expr,msg) assert( ( expr ) || blaze::ASSERT_MESSAGE( msg ) )
104 # define BLAZE_USER_ASSERT(expr,msg)