您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
|
- /** @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
|