2009-01-13 18:58:07 +00:00
|
|
|
/** @file aiAssert.h
|
|
|
|
*/
|
2008-05-05 12:36:31 +00:00
|
|
|
#ifndef AI_DEBUG_H_INC
|
|
|
|
#define AI_DEBUG_H_INC
|
|
|
|
|
2010-11-26 11:30:25 +00:00
|
|
|
#ifdef _DEBUG
|
2011-04-06 12:06:40 +00:00
|
|
|
# include <assert.h>
|
|
|
|
# define ai_assert(expression) assert(expression)
|
2008-05-05 12:36:31 +00:00
|
|
|
#else
|
2011-04-06 12:06:40 +00:00
|
|
|
# define ai_assert(expression)
|
2008-05-05 12:36:31 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|