15 lines
224 B
C
15 lines
224 B
C
|
/** @file assert.h
|
||
|
*/
|
||
|
#ifndef AI_DEBUG_H_INC
|
||
|
#define AI_DEBUG_H_INC
|
||
|
|
||
|
#ifdef _DEBUG
|
||
|
# include <assert.h>
|
||
|
# define ai_assert(expression) assert(expression)
|
||
|
#else
|
||
|
# define ai_assert(expression)
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif
|