asrt
Automated System Runtime Testing library
Loading...
Searching...
No Matches
asrt_assert.h
1
11#ifndef ASRT_ASRT_ASSERT_H
12#define ASRT_ASRT_ASSERT_H
13
18#ifndef ASRT_ASSERT
19#ifdef ASRT_DEFAULT_ASSERT
20#include <assert.h>
21#define ASRT_ASSERT( x ) assert( x )
22#else
23#define ASRT_ASSERT( x ) \
24 do { \
25 (void) sizeof( x ); /* NOLINT(bugprone-sizeof-expression) */ \
26 } while ( 0 )
27#endif
28#endif
29
30#endif