Initial commit: Final state of the master project
This commit is contained in:
14
Research/inc/assimp/ai_assert.h
Normal file
14
Research/inc/assimp/ai_assert.h
Normal file
@@ -0,0 +1,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
|
||||
Reference in New Issue
Block a user