mirror of
https://github.com/JoeyDeVries/LearnOpenGL.git
synced 2026-01-02 04:37:54 +08:00
15 lines
222 B
C
15 lines
222 B
C
/** @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
|