git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@943 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
15 lines
226 B
C
15 lines
226 B
C
/** @file aiAssert.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
|