Initial commit
This commit is contained in:
14
Lib/Include/assimp/ai_assert.h
Normal file
14
Lib/Include/assimp/ai_assert.h
Normal file
@@ -0,0 +1,14 @@
|
||||
/** @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
|
||||
Reference in New Issue
Block a user