您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

15 行
222 B

  1. /** @file assert.h
  2. */
  3. #ifndef AI_DEBUG_H_INC
  4. #define AI_DEBUG_H_INC
  5. #ifdef ASSIMP_BUILD_DEBUG
  6. # include <assert.h>
  7. # define ai_assert(expression) assert(expression)
  8. #else
  9. # define ai_assert(expression)
  10. #endif
  11. #endif