summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/assimp/include/assimp/ai_assert.h
blob: f42f909d5bf1d84ad824e86ae6d9dfa21f129f73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** @file assert.h
 */
#ifndef AI_DEBUG_H_INC
#define AI_DEBUG_H_INC

#ifdef ASSIMP_BUILD_DEBUG  
#	include <assert.h>
#	define	ai_assert(expression) assert(expression)
#else
#	define	ai_assert(expression)
#endif


#endif